2015-04-04 00:06:48 -04:00
|
|
|
package network
|
2014-04-14 02:15:31 -04:00
|
|
|
|
2015-04-04 00:06:48 -04:00
|
|
|
import "github.com/docker/docker/nat"
|
2014-04-14 02:15:31 -04:00
|
|
|
|
2015-04-04 00:06:48 -04:00
|
|
|
type Settings struct {
|
2015-01-08 18:03:19 -05:00
|
|
|
IPAddress string
|
|
|
|
IPPrefixLen int
|
|
|
|
MacAddress string
|
|
|
|
LinkLocalIPv6Address string
|
|
|
|
LinkLocalIPv6PrefixLen int
|
|
|
|
GlobalIPv6Address string
|
|
|
|
GlobalIPv6PrefixLen int
|
|
|
|
Gateway string
|
|
|
|
IPv6Gateway string
|
|
|
|
Bridge string
|
2015-04-04 00:06:48 -04:00
|
|
|
PortMapping map[string]map[string]string // Deprecated
|
2015-01-08 18:03:19 -05:00
|
|
|
Ports nat.PortMap
|
2014-04-14 02:15:31 -04:00
|
|
|
}
|