mirror of
https://github.com/protobuf-c/protobuf-c.git
synced 2024-12-27 05:11:04 +08:00
20d45b1179
Since we now require protobuf >= 3.0.0, we don't have to support older protobuf versions that don't recognize the `syntax` syntax, so we can put `syntax = "proto2";` on these proto files to silence the protoc compiler's diagnostic "No syntax specified for the proto file".
45 lines
695 B
Protocol Buffer
45 lines
695 B
Protocol Buffer
syntax = "proto2";
|
|
|
|
package foo;
|
|
|
|
import "protobuf-c/protobuf-c.proto";
|
|
|
|
option (pb_c_file).c_package = "foo";
|
|
|
|
message Person {
|
|
required string name = 1;
|
|
required int32 id = 2;
|
|
optional string email = 3;
|
|
|
|
enum PhoneType {
|
|
MOBILE = 0;
|
|
HOME = 1;
|
|
WORK = 2;
|
|
}
|
|
|
|
message PhoneNumber {
|
|
message Comment {
|
|
required string comment = 1;
|
|
}
|
|
|
|
required string number = 1;
|
|
optional PhoneType type = 2 [default = HOME];
|
|
optional Comment comment = 3;
|
|
}
|
|
|
|
repeated PhoneNumber phone = 4;
|
|
}
|
|
|
|
message LookupResult
|
|
{
|
|
optional Person person = 1;
|
|
}
|
|
|
|
message Name {
|
|
optional string name = 1;
|
|
};
|
|
|
|
service DirLookup {
|
|
rpc ByName (Name) returns (LookupResult);
|
|
}
|