プロトコル定義ファイルを別のプロトコル ファイルにインクルードしたいと考えています。例えば:
// base.proto:
message P_EndPoint {
required int32 id = 1;
required string host = 2;
required int32 port = 3;
}
次に、別のファイルで:
communication.proto:
// somehow include `base.proto'
// ...
message P_CommunicationProtocol {
required CP_MessageType type = 1;
optional int32 id = 2;
optional P_EndPoint identity = 3;
repeated P_EndPoint others = 4;
}
// ...
(注: developers.google.com は私のロケールでは利用できません)