Tôi muốn bao gồm tệp định nghĩa giao thức trong tệp giao thức khác. Ví dụ:Tách các định nghĩa đệm giao thức thành nhiều tệp .proto
// base.proto:
message P_EndPoint {
required int32 id = 1;
required string host = 2;
required int32 port = 3;
}
Sau đó trong tập tin khác:
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;
}
// ...
(Lưu ý: developers.google.com không có sẵn trong miền địa phương của tôi)
https://developers.google.com/protocol-buffers/docs/proto#other cụ thể là phần được gắn nhãn "Nhập định nghĩa" –
Tôi không thể truy cập URL đó. –