mirror of
https://github.com/netbirdio/netbird.git
synced 2024-11-29 19:43:57 +01:00
4616bc5258
Support client route management feature on Android
38 lines
695 B
Go
38 lines
695 B
Go
//go:build !linux
|
|
// +build !linux
|
|
|
|
package routemanager
|
|
|
|
import (
|
|
"net/netip"
|
|
"os/exec"
|
|
"runtime"
|
|
|
|
log "github.com/sirupsen/logrus"
|
|
)
|
|
|
|
func addToRouteTable(prefix netip.Prefix, addr string) error {
|
|
cmd := exec.Command("route", "add", prefix.String(), addr)
|
|
out, err := cmd.Output()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
log.Debugf(string(out))
|
|
return nil
|
|
}
|
|
|
|
func removeFromRouteTable(prefix netip.Prefix) error {
|
|
cmd := exec.Command("route", "delete", prefix.String())
|
|
out, err := cmd.Output()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
log.Debugf(string(out))
|
|
return nil
|
|
}
|
|
|
|
func enableIPForwarding() error {
|
|
log.Infof("enable IP forwarding is not implemented on %s", runtime.GOOS)
|
|
return nil
|
|
}
|