mirror of
https://github.com/netbirdio/netbird.git
synced 2024-12-15 03:11:02 +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
|
|
}
|