mirror of
https://github.com/qdm12/gluetun.git
synced 2026-05-07 04:20:12 +02:00
40cdb4f662
- Do not filter by link anymore - IPv6 detection simplified
21 lines
382 B
Go
21 lines
382 B
Go
//go:build !linux && !darwin
|
|
|
|
package netlink
|
|
|
|
func (n *NetLink) RouteList(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")
|
|
}
|