2015-06-04 20:21:23 -07:00
|
|
|
package sandbox
|
|
|
|
|
|
|
|
import "net"
|
|
|
|
|
|
|
|
func (i *nwIface) processInterfaceOptions(options ...IfaceOption) {
|
|
|
|
for _, opt := range options {
|
|
|
|
if opt != nil {
|
|
|
|
opt(i)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-06-04 23:45:04 -07:00
|
|
|
func (n *networkNamespace) Bridge(isBridge bool) IfaceOption {
|
|
|
|
return func(i *nwIface) {
|
|
|
|
i.bridge = isBridge
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (n *networkNamespace) Master(name string) IfaceOption {
|
|
|
|
return func(i *nwIface) {
|
|
|
|
i.master = name
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-06-04 20:21:23 -07:00
|
|
|
func (n *networkNamespace) Address(addr *net.IPNet) IfaceOption {
|
|
|
|
return func(i *nwIface) {
|
|
|
|
i.address = addr
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (n *networkNamespace) AddressIPv6(addr *net.IPNet) IfaceOption {
|
|
|
|
return func(i *nwIface) {
|
|
|
|
i.addressIPv6 = addr
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (n *networkNamespace) Routes(routes []*net.IPNet) IfaceOption {
|
|
|
|
return func(i *nwIface) {
|
|
|
|
i.routes = routes
|
|
|
|
}
|
|
|
|
}
|