mirror of
https://github.com/netbirdio/netbird.git
synced 2024-12-14 19:00:50 +01:00
12 lines
213 B
Go
12 lines
213 B
Go
//go:build !android
|
|
|
|
package peer
|
|
|
|
import (
|
|
"github.com/netbirdio/netbird/client/internal/stdnet"
|
|
)
|
|
|
|
func (w *WorkerICE) newStdNet() (*stdnet.Net, error) {
|
|
return stdnet.NewNet(w.configICE.InterfaceBlackList)
|
|
}
|