mirror of
https://github.com/netbirdio/netbird.git
synced 2026-04-05 09:03:54 -04:00
Deduplicate STUN package sending. Originally, because every peer shared the same UDP address, the library could not distinguish which STUN message was associated with which candidate. As a result, the Pion library responded from all candidates for every STUN message.
8 lines
155 B
Go
8 lines
155 B
Go
//go:build ios
|
|
|
|
package udpmux
|
|
|
|
func (m *SingleSocketUDPMux) notifyAddressRemoval(addr string) {
|
|
// iOS doesn't support nbnet hooks, so this is a no-op
|
|
}
|