github.com/zhuohuang-hust/src-cbuild@v0.0.0-20230105071821-c7aab3e7c840/mergeCode/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  	// SourceMac of the network
    32  	SourceMac = "com.docker.network.windowsshim.sourcemac"
    33  )