mirror of
https://github.com/netbirdio/netbird.git
synced 2024-12-03 21:44:09 +01:00
4e918e55ba
Rethink the peer reconnection implementation
23 lines
509 B
Go
23 lines
509 B
Go
package ice
|
|
|
|
import (
|
|
"sync/atomic"
|
|
|
|
"github.com/pion/ice/v3"
|
|
)
|
|
|
|
type Config struct {
|
|
// StunTurn is a list of STUN and TURN URLs
|
|
StunTurn *atomic.Value // []*stun.URI
|
|
|
|
// InterfaceBlackList is a list of machine interfaces that should be filtered out by ICE Candidate gathering
|
|
// (e.g. if eth0 is in the list, host candidate of this interface won't be used)
|
|
InterfaceBlackList []string
|
|
DisableIPv6Discovery bool
|
|
|
|
UDPMux ice.UDPMux
|
|
UDPMuxSrflx ice.UniversalUDPMux
|
|
|
|
NATExternalIPs []string
|
|
}
|