mirror of
https://github.com/netbirdio/netbird.git
synced 2025-03-03 17:31:13 +01:00
13 lines
194 B
Go
13 lines
194 B
Go
//go:build !linux || android
|
|
|
|
package net
|
|
|
|
func Init() {
|
|
// nothing to do on non-linux
|
|
}
|
|
|
|
func AdvancedRouting() bool {
|
|
// non-linux currently doesn't support advanced routing
|
|
return false
|
|
}
|