mirror of
https://github.com/netbirdio/netbird.git
synced 2024-12-14 10:50:45 +01:00
4e918e55ba
Rethink the peer reconnection implementation
12 lines
236 B
Go
12 lines
236 B
Go
//go:build !android
|
|
|
|
package ice
|
|
|
|
import (
|
|
"github.com/netbirdio/netbird/client/internal/stdnet"
|
|
)
|
|
|
|
func newStdNet(_ stdnet.ExternalIFaceDiscover, ifaceBlacklist []string) (*stdnet.Net, error) {
|
|
return stdnet.NewNet(ifaceBlacklist)
|
|
}
|