2023-05-29 07:16:50 +00:00
|
|
|
//go:build !linux && !darwin
|
|
|
|
|
|
|
|
|
|
package netlink
|
|
|
|
|
|
2023-06-08 09:12:46 +00:00
|
|
|
func (n *NetLink) RouteList(family int) (
|
2024-10-11 19:20:48 +00:00
|
|
|
routes []Route, err error,
|
|
|
|
|
) {
|
2023-05-29 07:16:50 +00:00
|
|
|
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")
|
|
|
|
|
}
|