13 lines
233 B
Protocol Buffer
13 lines
233 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
// Client <-> Server
|
|
// address:
|
|
// Client -> Server: destination
|
|
// Server -> Client: source
|
|
// data: message data
|
|
message Message {
|
|
fixed64 address = 1;
|
|
fixed32 port = 2;
|
|
bytes data = 3;
|
|
}
|