16 lines
198 B
Protocol Buffer
16 lines
198 B
Protocol Buffer
syntax = "proto2";
|
|
|
|
package org.caf;
|
|
|
|
message Ping {
|
|
required int32 id = 1;
|
|
}
|
|
message Pong {
|
|
required int32 id = 1;
|
|
}
|
|
|
|
message PingOrPong {
|
|
optional Ping ping = 1;
|
|
optional Pong pong = 2;
|
|
}
|