2015-09-02 16:42:01 -07:00
|
|
|
package osl
|
2015-06-12 13:51:57 -07:00
|
|
|
|
|
|
|
import "net"
|
|
|
|
|
2015-06-20 17:08:36 -07:00
|
|
|
func (nh *neigh) processNeighOptions(options ...NeighOption) {
|
|
|
|
for _, opt := range options {
|
|
|
|
if opt != nil {
|
|
|
|
opt(nh)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (n *networkNamespace) LinkName(name string) NeighOption {
|
|
|
|
return func(nh *neigh) {
|
|
|
|
nh.linkName = name
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (n *networkNamespace) Family(family int) NeighOption {
|
|
|
|
return func(nh *neigh) {
|
|
|
|
nh.family = family
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-06-12 13:51:57 -07:00
|
|
|
func (i *nwIface) processInterfaceOptions(options ...IfaceOption) {
|
|
|
|
for _, opt := range options {
|
|
|
|
if opt != nil {
|
|
|
|
opt(i)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-08 18:47:02 -08:00
|
|
|
func (n *networkNamespace) MacAddress(mac net.HardwareAddr) IfaceOption {
|
|
|
|
return func(i *nwIface) {
|
|
|
|
i.mac = mac
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-06-12 13:51:57 -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
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-07 14:28:28 -07:00
|
|
|
func (n *networkNamespace) LinkLocalAddresses(list []*net.IPNet) IfaceOption {
|
|
|
|
return func(i *nwIface) {
|
|
|
|
i.llAddrs = list
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-06-12 13:51:57 -07:00
|
|
|
func (n *networkNamespace) Routes(routes []*net.IPNet) IfaceOption {
|
|
|
|
return func(i *nwIface) {
|
|
|
|
i.routes = routes
|
|
|
|
}
|
|
|
|
}
|