mirror of
https://github.com/netbirdio/netbird.git
synced 2024-11-26 18:13:40 +01:00
4616bc5258
Support client route management feature on Android
14 lines
228 B
Go
14 lines
228 B
Go
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
|
|
}
|