mirror of
https://github.com/status-im/status-go.git
synced 2025-01-09 14:16:21 +00:00
9de77b21b2
Adds support for datasync, V1Messages and disabling the discovery topic. This is a backward compatible change as long as they are not toggled on (they are not by default).
18 lines
312 B
Protocol Buffer
18 lines
312 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package mvds;
|
|
option go_package = "protobuf";
|
|
|
|
message Payload {
|
|
repeated bytes acks = 5001;
|
|
repeated bytes offers = 5002;
|
|
repeated bytes requests = 5003;
|
|
repeated Message messages = 5004;
|
|
}
|
|
|
|
message Message {
|
|
bytes group_id = 6001;
|
|
int64 timestamp = 6002;
|
|
bytes body = 6003;
|
|
}
|