mirror of
https://github.com/netbirdio/netbird.git
synced 2024-11-29 11:33:48 +01:00
5ad4ae769a
Adds readme (with --anonymize) Fixes archive file timestamps Adds routes info Adds interfaces Adds client config
29 lines
586 B
Go
29 lines
586 B
Go
//go:build !linux && !ios
|
|
|
|
package systemops
|
|
|
|
import (
|
|
"net"
|
|
"net/netip"
|
|
"runtime"
|
|
|
|
log "github.com/sirupsen/logrus"
|
|
)
|
|
|
|
func (r *SysOps) AddVPNRoute(prefix netip.Prefix, intf *net.Interface) error {
|
|
return r.genericAddVPNRoute(prefix, intf)
|
|
}
|
|
|
|
func (r *SysOps) RemoveVPNRoute(prefix netip.Prefix, intf *net.Interface) error {
|
|
return r.genericRemoveVPNRoute(prefix, intf)
|
|
}
|
|
|
|
func EnableIPForwarding() error {
|
|
log.Infof("Enable IP forwarding is not implemented on %s", runtime.GOOS)
|
|
return nil
|
|
}
|
|
|
|
func hasSeparateRouting() ([]netip.Prefix, error) {
|
|
return GetRoutesFromTable()
|
|
}
|