mirror of
https://github.com/netbirdio/netbird.git
synced 2024-11-25 17:43:38 +01:00
1ff7a953a0
Store the StunTurn address in atomic store
12 lines
221 B
Go
12 lines
221 B
Go
//go:build !android
|
|
|
|
package peer
|
|
|
|
import (
|
|
"github.com/netbirdio/netbird/client/internal/stdnet"
|
|
)
|
|
|
|
func (conn *Conn) newStdNet() (*stdnet.Net, error) {
|
|
return stdnet.NewNet(conn.config.ICEConfig.InterfaceBlackList)
|
|
}
|