diff --git a/libnetwork/Godeps/Godeps.json b/libnetwork/Godeps/Godeps.json index c3fe20f234d2187a7699eac326547b2d8249f335..bcd738d0904e9f360eba7dc6a5fadd5bbc01bb11 100644 --- a/libnetwork/Godeps/Godeps.json +++ b/libnetwork/Godeps/Godeps.json @@ -26,8 +26,8 @@ }, { "ImportPath": "github.com/Microsoft/hcsshim", - "Comment": "v0.4.3", - "Rev": "6611816fb4c1693b429ada0f358102119a0b1466" + "Comment": "v0.5.1", + "Rev": "523023ef1ef8ec08b23bbff88ab68552c5f1a6d7" }, { "ImportPath": "github.com/Sirupsen/logrus", diff --git a/libnetwork/Godeps/_workspace/src/github.com/Microsoft/hcsshim/hnsfuncs.go b/libnetwork/Godeps/_workspace/src/github.com/Microsoft/hcsshim/hnsfuncs.go index 7bf46a6881f250ab05d293e4d5f7a7c64b021a3c..57ad5198917180fc93948de2bd02756a37bbc0c0 100644 --- a/libnetwork/Godeps/_workspace/src/github.com/Microsoft/hcsshim/hnsfuncs.go +++ b/libnetwork/Godeps/_workspace/src/github.com/Microsoft/hcsshim/hnsfuncs.go @@ -30,6 +30,11 @@ type VsidPolicy struct { VSID uint } +type PaPolicy struct { + Type string + PA string +} + // Subnet is assoicated with a network and represents a list // of subnets available to the network type Subnet struct { @@ -58,6 +63,7 @@ type HNSNetwork struct { DNSSuffix string `json:",omitempty"` DNSServerList string `json:",omitempty"` DNSServerCompartment uint32 `json:",omitempty"` + ManagementIP string `json:",omitempty"` } // HNSEndpoint represents a network endpoint in HNS @@ -74,6 +80,7 @@ type HNSEndpoint struct { GatewayAddress string `json:",omitempty"` EnableInternalDNS bool `json:",omitempty"` PrefixLength uint8 `json:",omitempty"` + IsRemoteEndpoint bool `json:",omitempty"` } type hnsNetworkResponse struct {