Replace a broken assumption in candidate gathering for mDNS candidates.
The gathering of host candidates with mDNS names is asynchronous and its completion can happen after a srflx candidate is gathered by the same underlying socket. We have a broken check in UDPPort::CreateConnection() that assumes the gathering of host and srflx candidates is sequential. This CL also does minor refactoring and clean-up. Bug: chromium:944577 Change-Id: Ic28136a9515081f40b232a22fcbf4209814ed33a Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/138043 Reviewed-by: Steve Anton <steveanton@webrtc.org> Reviewed-by: Jeroen de Borst <jeroendb@webrtc.org> Reviewed-by: Amit Hilbuch <amithi@webrtc.org> Commit-Queue: Qingsi Wang <qingsi@webrtc.org> Cr-Commit-Position: refs/heads/master@{#28030}
This commit is contained in:
@ -33,6 +33,7 @@
|
||||
#include "pc/test/mock_peer_connection_observers.h"
|
||||
#include "rtc_base/arraysize.h"
|
||||
#include "rtc_base/checks.h"
|
||||
#include "rtc_base/fake_mdns_responder.h"
|
||||
#include "rtc_base/fake_network.h"
|
||||
#include "rtc_base/gunit.h"
|
||||
#include "rtc_base/ref_counted_object.h"
|
||||
@ -245,7 +246,8 @@ class PeerConnectionUsageHistogramTest : public ::testing::Test {
|
||||
webrtc::PeerConnectionDependencies deps(nullptr /* observer_in */);
|
||||
|
||||
auto fake_network = NewFakeNetwork();
|
||||
fake_network->CreateMdnsResponder(rtc::Thread::Current());
|
||||
fake_network->set_mdns_responder(
|
||||
absl::make_unique<webrtc::FakeMdnsResponder>(rtc::Thread::Current()));
|
||||
fake_network->AddInterface(NextLocalAddress());
|
||||
|
||||
std::unique_ptr<cricket::BasicPortAllocator> port_allocator(
|
||||
|
||||
Reference in New Issue
Block a user