mirror of
https://github.com/netbirdio/netbird.git
synced 2026-03-31 06:24:18 -04:00
13 lines
224 B
Go
13 lines
224 B
Go
package netstack
|
|
|
|
const EnvUseNetstackMode = "NB_USE_NETSTACK_MODE"
|
|
|
|
// IsEnabled always returns true for js since it's the only mode available
|
|
func IsEnabled() bool {
|
|
return true
|
|
}
|
|
|
|
func ListenAddr() string {
|
|
return ""
|
|
}
|