16 lines
221 B
Protocol Buffer
16 lines
221 B
Protocol Buffer
|
|
// [START declaration]
|
|
syntax = "proto3";
|
|
package messages.leave;
|
|
|
|
// import "google/protobuf/timestamp.proto";
|
|
// [END declaration]
|
|
|
|
|
|
// [START messages]
|
|
message Leave {
|
|
uint32 port = 1;
|
|
string srcAddress = 2;
|
|
}
|
|
|