mirror of
https://github.com/protobuf-c/protobuf-c.git
synced 2024-12-27 22:01:02 +08:00
13b6e1fd00
Make sure we actually include the proto3 generated header and test nested submessages
39 lines
597 B
Protocol Buffer
39 lines
597 B
Protocol Buffer
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);
|
|
}
|