1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00
moby--moby/pkg/netlink/netlink_unsupported.go
2014-01-31 03:16:42 -07:00

33 lines
645 B
Go

// +build !linux !amd64
package netlink
import (
"fmt"
"net"
)
func NetworkGetRoutes() ([]Route, error) {
return nil, fmt.Errorf("Not implemented")
}
func NetworkLinkAdd(name string, linkType string) error {
return fmt.Errorf("Not implemented")
}
func NetworkLinkUp(iface *net.Interface) error {
return fmt.Errorf("Not implemented")
}
func NetworkLinkAddIp(iface *net.Interface, ip net.IP, ipNet *net.IPNet) error {
return fmt.Errorf("Not implemented")
}
func AddDefaultGw(ip net.IP) error {
return fmt.Errorf("Not implemented")
}
func NetworkSetMTU(iface *net.Interface, mtu int) error {
return fmt.Errorf("Not implemented")
}