mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
b1e5178bc3
Endpoint gossip will use protobuf so that we can make changes in a backward compatible way. Signed-off-by: Jana Radhakrishnan <mrjana@docker.com>
19 lines
No EOL
522 B
Protocol Buffer
19 lines
No EOL
522 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
import "gogoproto/gogo.proto";
|
|
|
|
package libnetwork;
|
|
|
|
option (gogoproto.marshaler_all) = true;
|
|
option (gogoproto.unmarshaler_all) = true;
|
|
option (gogoproto.stringer_all) = true;
|
|
option (gogoproto.gostring_all) = true;
|
|
option (gogoproto.sizer_all) = true;
|
|
option (gogoproto.goproto_stringer_all) = false;
|
|
|
|
message EndpointRecord {
|
|
string name = 1;
|
|
string service_name = 2;
|
|
string service_id = 3 [(gogoproto.customname) = "ServiceID"];
|
|
string endpoint_ip = 4 [(gogoproto.customname) = "EndpointIP"];
|
|
} |