mirror of
https://github.com/netbirdio/netbird.git
synced 2024-12-15 11:21:04 +01:00
e407fe02c5
- fix Stun, Turn address update thread safety issue - move conn worker login into peer package
12 lines
222 B
Go
12 lines
222 B
Go
//go:build !android
|
|
|
|
package peer
|
|
|
|
import (
|
|
"github.com/netbirdio/netbird/client/internal/stdnet"
|
|
)
|
|
|
|
func (conn *ConnectorICE) newStdNet() (*stdnet.Net, error) {
|
|
return stdnet.NewNet(conn.configICE.InterfaceBlackList)
|
|
}
|