mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Vendoring hcsshim to pick overlay changes
Signed-off-by: Madhu Venugopal <madhu@docker.com>
This commit is contained in:
parent
c5ca82daf4
commit
93914ef0f6
2 changed files with 9 additions and 2 deletions
4
libnetwork/Godeps/Godeps.json
generated
4
libnetwork/Godeps/Godeps.json
generated
|
@ -26,8 +26,8 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ImportPath": "github.com/Microsoft/hcsshim",
|
"ImportPath": "github.com/Microsoft/hcsshim",
|
||||||
"Comment": "v0.4.3",
|
"Comment": "v0.5.1",
|
||||||
"Rev": "6611816fb4c1693b429ada0f358102119a0b1466"
|
"Rev": "523023ef1ef8ec08b23bbff88ab68552c5f1a6d7"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ImportPath": "github.com/Sirupsen/logrus",
|
"ImportPath": "github.com/Sirupsen/logrus",
|
||||||
|
|
7
libnetwork/Godeps/_workspace/src/github.com/Microsoft/hcsshim/hnsfuncs.go
generated
vendored
7
libnetwork/Godeps/_workspace/src/github.com/Microsoft/hcsshim/hnsfuncs.go
generated
vendored
|
@ -30,6 +30,11 @@ type VsidPolicy struct {
|
||||||
VSID uint
|
VSID uint
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type PaPolicy struct {
|
||||||
|
Type string
|
||||||
|
PA string
|
||||||
|
}
|
||||||
|
|
||||||
// Subnet is assoicated with a network and represents a list
|
// Subnet is assoicated with a network and represents a list
|
||||||
// of subnets available to the network
|
// of subnets available to the network
|
||||||
type Subnet struct {
|
type Subnet struct {
|
||||||
|
@ -58,6 +63,7 @@ type HNSNetwork struct {
|
||||||
DNSSuffix string `json:",omitempty"`
|
DNSSuffix string `json:",omitempty"`
|
||||||
DNSServerList string `json:",omitempty"`
|
DNSServerList string `json:",omitempty"`
|
||||||
DNSServerCompartment uint32 `json:",omitempty"`
|
DNSServerCompartment uint32 `json:",omitempty"`
|
||||||
|
ManagementIP string `json:",omitempty"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// HNSEndpoint represents a network endpoint in HNS
|
// HNSEndpoint represents a network endpoint in HNS
|
||||||
|
@ -74,6 +80,7 @@ type HNSEndpoint struct {
|
||||||
GatewayAddress string `json:",omitempty"`
|
GatewayAddress string `json:",omitempty"`
|
||||||
EnableInternalDNS bool `json:",omitempty"`
|
EnableInternalDNS bool `json:",omitempty"`
|
||||||
PrefixLength uint8 `json:",omitempty"`
|
PrefixLength uint8 `json:",omitempty"`
|
||||||
|
IsRemoteEndpoint bool `json:",omitempty"`
|
||||||
}
|
}
|
||||||
|
|
||||||
type hnsNetworkResponse struct {
|
type hnsNetworkResponse struct {
|
||||||
|
|
Loading…
Add table
Reference in a new issue