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