mirror of
https://github.com/netbirdio/netbird.git
synced 2024-12-14 19:00:50 +01:00
e407fe02c5
- fix Stun, Turn address update thread safety issue - move conn worker login into peer package
8 lines
228 B
Go
8 lines
228 B
Go
package peer
|
|
|
|
import "github.com/netbirdio/netbird/client/internal/stdnet"
|
|
|
|
func (conn *ConnectorICE) newStdNet() (*stdnet.Net, error) {
|
|
return stdnet.NewNetWithDiscover(conn.iFaceDiscover, conn.configICE.InterfaceBlackList)
|
|
}
|