mirror of
https://github.com/netbirdio/netbird.git
synced 2024-11-26 18:13:40 +01:00
34 lines
639 B
Go
34 lines
639 B
Go
package routemanager
|
|
|
|
import (
|
|
"net"
|
|
"net/netip"
|
|
"runtime"
|
|
|
|
log "github.com/sirupsen/logrus"
|
|
|
|
"github.com/netbirdio/netbird/client/internal/peer"
|
|
"github.com/netbirdio/netbird/iface"
|
|
)
|
|
|
|
func setupRouting([]net.IP, *iface.WGIface) (peer.BeforeAddPeerHookFunc, peer.AfterRemovePeerHookFunc, error) {
|
|
return nil, nil, nil
|
|
}
|
|
|
|
func cleanupRouting() error {
|
|
return nil
|
|
}
|
|
|
|
func enableIPForwarding() error {
|
|
log.Infof("Enable IP forwarding is not implemented on %s", runtime.GOOS)
|
|
return nil
|
|
}
|
|
|
|
func addVPNRoute(netip.Prefix, *net.Interface) error {
|
|
return nil
|
|
}
|
|
|
|
func removeVPNRoute(netip.Prefix, *net.Interface) error {
|
|
return nil
|
|
}
|