mirror of
https://github.com/netbirdio/netbird.git
synced 2024-12-02 04:53:51 +01:00
16 lines
244 B
Go
16 lines
244 B
Go
|
//go:build ios
|
||
|
|
||
|
package routemanager
|
||
|
|
||
|
import (
|
||
|
"net/netip"
|
||
|
)
|
||
|
|
||
|
func addToRouteTableIfNoExists(prefix netip.Prefix, addr string) error {
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
func removeFromRouteTableIfNonSystem(prefix netip.Prefix, addr string) error {
|
||
|
return nil
|
||
|
}
|