21 lines
394 B
Go
21 lines
394 B
Go
|
|
//go:build !linux && !darwin
|
||
|
|
|
||
|
|
package netlink
|
||
|
|
|
||
|
|
func (n *NetLink) RouteList(link *Link, family int) (
|
||
|
|
routes []Route, err error) {
|
||
|
|
panic("not implemented")
|
||
|
|
}
|
||
|
|
|
||
|
|
func (n *NetLink) RouteAdd(route Route) error {
|
||
|
|
panic("not implemented")
|
||
|
|
}
|
||
|
|
|
||
|
|
func (n *NetLink) RouteDel(route Route) error {
|
||
|
|
panic("not implemented")
|
||
|
|
}
|
||
|
|
|
||
|
|
func (n *NetLink) RouteReplace(route Route) error {
|
||
|
|
panic("not implemented")
|
||
|
|
}
|