netbird/client/internal/peer/stdnet.go

12 lines
220 B
Go
Raw Normal View History

//go:build !android
package peer
import (
"github.com/netbirdio/netbird/client/internal/stdnet"
)
func (w *WorkerICE) newStdNet() (*stdnet.Net, error) {
return stdnet.NewNet(w.config.ICEConfig.InterfaceBlackList)
}