mirror of https://github.com/vacp2p/rfc.git
Update mvds.md
This commit is contained in:
parent
bcb773a5a2
commit
7679350c76
15
mvds.md
15
mvds.md
|
@ -48,18 +48,17 @@ Payloads are implemented using [protocol buffers v3](https://developers.google.c
|
|||
syntax = "proto3";
|
||||
|
||||
message Payload {
|
||||
repeated bytes acks = 1;
|
||||
repeated bytes offers = 2;
|
||||
repeated bytes requests = 3;
|
||||
repeated Message messages = 4;
|
||||
repeated bytes acks = 5001;
|
||||
repeated bytes offers = 5002;
|
||||
repeated bytes requests = 5003;
|
||||
repeated Message messages = 5004;
|
||||
}
|
||||
|
||||
message Message {
|
||||
bytes group_id = 1;
|
||||
int64 timestamp = 2;
|
||||
bytes body = 3;
|
||||
bytes group_id = 6001;
|
||||
int64 timestamp = 6002;
|
||||
bytes body = 6003;
|
||||
}
|
||||
|
||||
```
|
||||
|
||||
Each payload contains the following fields:
|
||||
|
|
Loading…
Reference in New Issue