github.com/kaisenlinux/docker.io@v0.0.0-20230510090727-ea55db55fac7/libnetwork/drivers/windows/labels.go (about) 1 package windows 2 3 const ( 4 // NetworkName label for bridge driver 5 NetworkName = "com.docker.network.windowsshim.networkname" 6 7 // HNSID of the discovered network 8 HNSID = "com.docker.network.windowsshim.hnsid" 9 10 // RoutingDomain of the network 11 RoutingDomain = "com.docker.network.windowsshim.routingdomain" 12 13 // Interface of the network 14 Interface = "com.docker.network.windowsshim.interface" 15 16 // QosPolicies of the endpoint 17 QosPolicies = "com.docker.endpoint.windowsshim.qospolicies" 18 19 // VLAN of the network 20 VLAN = "com.docker.network.windowsshim.vlanid" 21 22 // VSID of the network 23 VSID = "com.docker.network.windowsshim.vsid" 24 25 // DNSSuffix of the network 26 DNSSuffix = "com.docker.network.windowsshim.dnssuffix" 27 28 // DNSServers of the network 29 DNSServers = "com.docker.network.windowsshim.dnsservers" 30 31 // MacPool of the network 32 MacPool = "com.docker.network.windowsshim.macpool" 33 34 // SourceMac of the network 35 SourceMac = "com.docker.network.windowsshim.sourcemac" 36 37 // DisableICC label 38 DisableICC = "com.docker.network.windowsshim.disableicc" 39 40 // DisableDNS label 41 DisableDNS = "com.docker.network.windowsshim.disable_dns" 42 43 // DisableGatewayDNS label 44 DisableGatewayDNS = "com.docker.network.windowsshim.disable_gatewaydns" 45 46 // EnableOutboundNat label 47 EnableOutboundNat = "com.docker.network.windowsshim.enable_outboundnat" 48 49 // OutboundNatExceptions label 50 OutboundNatExceptions = "com.docker.network.windowsshim.outboundnat_exceptions" 51 )