mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
bbbfa21a94
Signed-off-by: Nick Wood <nwood@microsoft.com>
51 lines
1.4 KiB
Go
51 lines
1.4 KiB
Go
package windows
|
|
|
|
const (
|
|
// NetworkName label for bridge driver
|
|
NetworkName = "com.docker.network.windowsshim.networkname"
|
|
|
|
// HNSID of the discovered network
|
|
HNSID = "com.docker.network.windowsshim.hnsid"
|
|
|
|
// RoutingDomain of the network
|
|
RoutingDomain = "com.docker.network.windowsshim.routingdomain"
|
|
|
|
// Interface of the network
|
|
Interface = "com.docker.network.windowsshim.interface"
|
|
|
|
// QosPolicies of the endpoint
|
|
QosPolicies = "com.docker.endpoint.windowsshim.qospolicies"
|
|
|
|
// VLAN of the network
|
|
VLAN = "com.docker.network.windowsshim.vlanid"
|
|
|
|
// VSID of the network
|
|
VSID = "com.docker.network.windowsshim.vsid"
|
|
|
|
// DNSSuffix of the network
|
|
DNSSuffix = "com.docker.network.windowsshim.dnssuffix"
|
|
|
|
// DNSServers of the network
|
|
DNSServers = "com.docker.network.windowsshim.dnsservers"
|
|
|
|
// MacPool of the network
|
|
MacPool = "com.docker.network.windowsshim.macpool"
|
|
|
|
// SourceMac of the network
|
|
SourceMac = "com.docker.network.windowsshim.sourcemac"
|
|
|
|
// DisableICC label
|
|
DisableICC = "com.docker.network.windowsshim.disableicc"
|
|
|
|
// DisableDNS label
|
|
DisableDNS = "com.docker.network.windowsshim.disable_dns"
|
|
|
|
// DisableGatewayDNS label
|
|
DisableGatewayDNS = "com.docker.network.windowsshim.disable_gatewaydns"
|
|
|
|
// EnableOutboundNat label
|
|
EnableOutboundNat = "com.docker.network.windowsshim.enable_outboundnat"
|
|
|
|
// OutboundNatExceptions label
|
|
OutboundNatExceptions = "com.docker.network.windowsshim.outboundnat_exceptions"
|
|
)
|