mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
d1b012d97a
1. Base work was done by msabansal and nwoodmsft from : https://github.com/msabansal/docker/tree/overlay 2. reorganized under drivers/windows/overlay and rebased to libnetwork master 3. Porting overlay common fixes to windows driver *46f525c
*ba8714e
*6368406
4. Windows Service Discovery changes for swarm-mode 5. renaming default windows ipam drivers as "windows" Signed-off-by: Madhu Venugopal <madhu@docker.com> Signed-off-by: msabansal <sabansal@microsoft.com> Signed-off-by: nwoodmsft <Nicholas.Wood@microsoft.com>
27 lines
No EOL
994 B
Protocol Buffer
27 lines
No EOL
994 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
import "gogoproto/gogo.proto";
|
|
|
|
package overlay;
|
|
|
|
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;
|
|
|
|
// PeerRecord defines the information corresponding to a peer
|
|
// container in the overlay network.
|
|
message PeerRecord {
|
|
// Endpoint IP is the IP of the container attachment on the
|
|
// given overlay network.
|
|
string endpoint_ip = 1 [(gogoproto.customname) = "EndpointIP"];
|
|
// Endpoint MAC is the mac address of the container attachment
|
|
// on the given overlay network.
|
|
string endpoint_mac = 2 [(gogoproto.customname) = "EndpointMAC"];
|
|
// Tunnel Endpoint IP defines the host IP for the host in
|
|
// which this container is running and can be reached by
|
|
// building a tunnel to that host IP.
|
|
string tunnel_endpoint_ip = 3 [(gogoproto.customname) = "TunnelEndpointIP"];
|
|
} |