Revert "Added OnIceCandidateError to API and implementation"

This reverts commit 9469c784dbf732472e3b2a60a5fcca0a2f432313.

Reason for revert: Breaks downstream projects.

Original change's description:
> Added OnIceCandidateError to API and implementation
> 
> Bug: webrtc:3098
> Change-Id: I27ffd015ebf9e8130c1288f7331b0e2fdafb01ef
> Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/135953
> Commit-Queue: Steve Anton <steveanton@webrtc.org>
> Reviewed-by: Amit Hilbuch <amithi@webrtc.org>
> Reviewed-by: Qingsi Wang <qingsi@webrtc.org>
> Reviewed-by: Henrik Boström <hbos@webrtc.org>
> Cr-Commit-Position: refs/heads/master@{#28173}

TBR=steveanton@webrtc.org,hbos@webrtc.org,qingsi@webrtc.org,amithi@webrtc.org,elrello@microsoft.com

Change-Id: I3d77242ca3556cb491f523c238fbc7d3e294839b
No-Presubmit: true
No-Tree-Checks: true
No-Try: true
Bug: webrtc:3098
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/140620
Reviewed-by: Yves Gerey <yvesg@google.com>
Commit-Queue: Yves Gerey <yvesg@google.com>
Cr-Commit-Position: refs/heads/master@{#28177}
This commit is contained in:
Yves Gerey 2019-06-06 14:07:59 +00:00 committed by Commit Bot
parent 7b06b9b202
commit 3b8ed28d72
21 changed files with 37 additions and 281 deletions

View File

@ -1172,14 +1172,6 @@ class PeerConnectionObserver {
// A new ICE candidate has been gathered. // A new ICE candidate has been gathered.
virtual void OnIceCandidate(const IceCandidateInterface* candidate) = 0; virtual void OnIceCandidate(const IceCandidateInterface* candidate) = 0;
// Gathering of an ICE candidate failed.
// See https://w3c.github.io/webrtc-pc/#event-icecandidateerror
// |host_candidate| is a stringified socket address.
virtual void OnIceCandidateError(const std::string& host_candidate,
const std::string& url,
int error_code,
const std::string& error_text) {}
// Ice candidates have been removed. // Ice candidates have been removed.
// TODO(honghaiz): Make this a pure virtual method when all its subclasses // TODO(honghaiz): Make this a pure virtual method when all its subclasses
// implement it. // implement it.

View File

@ -270,9 +270,6 @@ class RTC_EXPORT IceTransportInternal : public rtc::PacketTransportInternal {
sigslot::signal2<IceTransportInternal*, const Candidate&> sigslot::signal2<IceTransportInternal*, const Candidate&>
SignalCandidateGathered; SignalCandidateGathered;
sigslot::signal2<IceTransportInternal*, const IceCandidateErrorEvent&>
SignalCandidateError;
sigslot::signal2<IceTransportInternal*, const Candidates&> sigslot::signal2<IceTransportInternal*, const Candidates&>
SignalCandidatesRemoved; SignalCandidatesRemoved;

View File

@ -180,8 +180,6 @@ void P2PTransportChannel::AddAllocatorSession(
session->SignalPortsPruned.connect(this, &P2PTransportChannel::OnPortsPruned); session->SignalPortsPruned.connect(this, &P2PTransportChannel::OnPortsPruned);
session->SignalCandidatesReady.connect( session->SignalCandidatesReady.connect(
this, &P2PTransportChannel::OnCandidatesReady); this, &P2PTransportChannel::OnCandidatesReady);
session->SignalCandidateError.connect(this,
&P2PTransportChannel::OnCandidateError);
session->SignalCandidatesRemoved.connect( session->SignalCandidatesRemoved.connect(
this, &P2PTransportChannel::OnCandidatesRemoved); this, &P2PTransportChannel::OnCandidatesRemoved);
session->SignalCandidatesAllocationDone.connect( session->SignalCandidatesAllocationDone.connect(
@ -880,13 +878,6 @@ void P2PTransportChannel::OnCandidatesReady(
} }
} }
void P2PTransportChannel::OnCandidateError(
PortAllocatorSession* session,
const IceCandidateErrorEvent& event) {
RTC_DCHECK(network_thread_ == rtc::Thread::Current());
SignalCandidateError(this, event);
}
void P2PTransportChannel::OnCandidatesAllocationDone( void P2PTransportChannel::OnCandidatesAllocationDone(
PortAllocatorSession* session) { PortAllocatorSession* session) {
RTC_DCHECK_RUN_ON(network_thread_); RTC_DCHECK_RUN_ON(network_thread_);

View File

@ -307,8 +307,6 @@ class RTC_EXPORT P2PTransportChannel : public IceTransportInternal {
const std::vector<PortInterface*>& ports); const std::vector<PortInterface*>& ports);
void OnCandidatesReady(PortAllocatorSession* session, void OnCandidatesReady(PortAllocatorSession* session,
const std::vector<Candidate>& candidates); const std::vector<Candidate>& candidates);
void OnCandidateError(PortAllocatorSession* session,
const IceCandidateErrorEvent& event);
void OnCandidatesRemoved(PortAllocatorSession* session, void OnCandidatesRemoved(PortAllocatorSession* session,
const std::vector<Candidate>& candidates); const std::vector<Candidate>& candidates);
void OnCandidatesAllocationDone(PortAllocatorSession* session); void OnCandidatesAllocationDone(PortAllocatorSession* session);

View File

@ -15,7 +15,6 @@
#include <memory> #include <memory>
#include <set> #include <set>
#include <string> #include <string>
#include <utility>
#include <vector> #include <vector>
#include "absl/types/optional.h" #include "absl/types/optional.h"
@ -131,23 +130,6 @@ struct ProtocolAddress {
bool operator!=(const ProtocolAddress& o) const { return !(*this == o); } bool operator!=(const ProtocolAddress& o) const { return !(*this == o); }
}; };
struct IceCandidateErrorEvent {
IceCandidateErrorEvent() = default;
IceCandidateErrorEvent(std::string host_candidate,
std::string url,
int error_code,
std::string error_text)
: host_candidate(std::move(host_candidate)),
url(std::move(url)),
error_code(error_code),
error_text(std::move(error_text)) {}
std::string host_candidate;
std::string url;
int error_code = 0;
std::string error_text;
};
typedef std::set<rtc::SocketAddress> ServerAddresses; typedef std::set<rtc::SocketAddress> ServerAddresses;
// Represents a local communication mechanism that can be used to create // Represents a local communication mechanism that can be used to create
@ -245,10 +227,9 @@ class Port : public PortInterface,
// Fired when candidates are discovered by the port. When all candidates // Fired when candidates are discovered by the port. When all candidates
// are discovered that belong to port SignalAddressReady is fired. // are discovered that belong to port SignalAddressReady is fired.
sigslot::signal2<Port*, const Candidate&> SignalCandidateReady; sigslot::signal2<Port*, const Candidate&> SignalCandidateReady;
// Provides all of the above information in one handy object. // Provides all of the above information in one handy object.
const std::vector<Candidate>& Candidates() const override; const std::vector<Candidate>& Candidates() const override;
// Fired when candidate discovery failed using certain server.
sigslot::signal2<Port*, const IceCandidateErrorEvent&> SignalCandidateError;
// SignalPortComplete is sent when port completes the task of candidates // SignalPortComplete is sent when port completes the task of candidates
// allocation. // allocation.

View File

@ -271,8 +271,6 @@ class RTC_EXPORT PortAllocatorSession : public sigslot::has_slots<> {
SignalPortsPruned; SignalPortsPruned;
sigslot::signal2<PortAllocatorSession*, const std::vector<Candidate>&> sigslot::signal2<PortAllocatorSession*, const std::vector<Candidate>&>
SignalCandidatesReady; SignalCandidatesReady;
sigslot::signal2<PortAllocatorSession*, const IceCandidateErrorEvent&>
SignalCandidateError;
// Candidates should be signaled to be removed when the port that generated // Candidates should be signaled to be removed when the port that generated
// the candidates is removed. // the candidates is removed.
sigslot::signal2<PortAllocatorSession*, const std::vector<Candidate>&> sigslot::signal2<PortAllocatorSession*, const std::vector<Candidate>&>

View File

@ -61,7 +61,6 @@ const char STUN_ERROR_REASON_SERVER_ERROR[] = "Server Error";
const char TURN_MAGIC_COOKIE_VALUE[] = {'\x72', '\xC6', '\x4B', '\xC6'}; const char TURN_MAGIC_COOKIE_VALUE[] = {'\x72', '\xC6', '\x4B', '\xC6'};
const char EMPTY_TRANSACTION_ID[] = "0000000000000000"; const char EMPTY_TRANSACTION_ID[] = "0000000000000000";
const uint32_t STUN_FINGERPRINT_XOR_VALUE = 0x5354554E; const uint32_t STUN_FINGERPRINT_XOR_VALUE = 0x5354554E;
const int SERVER_NOT_REACHABLE_ERROR = 701;
// StunMessage // StunMessage

View File

@ -581,9 +581,6 @@ enum TurnErrorType {
STUN_ERROR_WRONG_CREDENTIALS = 441, STUN_ERROR_WRONG_CREDENTIALS = 441,
STUN_ERROR_UNSUPPORTED_PROTOCOL = 442 STUN_ERROR_UNSUPPORTED_PROTOCOL = 442
}; };
extern const int SERVER_NOT_REACHABLE_ERROR;
extern const char STUN_ERROR_REASON_FORBIDDEN[]; extern const char STUN_ERROR_REASON_FORBIDDEN[];
extern const char STUN_ERROR_REASON_ALLOCATION_MISMATCH[]; extern const char STUN_ERROR_REASON_ALLOCATION_MISMATCH[];
extern const char STUN_ERROR_REASON_WRONG_CREDENTIALS[]; extern const char STUN_ERROR_REASON_WRONG_CREDENTIALS[];

View File

@ -79,10 +79,7 @@ class StunBindingRequest : public StunRequest {
<< " reason=" << attr->reason(); << " reason=" << attr->reason();
} }
port_->OnStunBindingOrResolveRequestFailed( port_->OnStunBindingOrResolveRequestFailed(server_addr_);
server_addr_, attr ? attr->number() : STUN_ERROR_GLOBAL_FAILURE,
attr ? attr->reason()
: "STUN binding response with no error code attribute.");
int64_t now = rtc::TimeMillis(); int64_t now = rtc::TimeMillis();
if (WithinLifetime(now) && if (WithinLifetime(now) &&
@ -96,9 +93,8 @@ class StunBindingRequest : public StunRequest {
RTC_LOG(LS_ERROR) << "Binding request timed out from " RTC_LOG(LS_ERROR) << "Binding request timed out from "
<< port_->GetLocalAddress().ToSensitiveString() << " (" << port_->GetLocalAddress().ToSensitiveString() << " ("
<< port_->Network()->name() << ")"; << port_->Network()->name() << ")";
port_->OnStunBindingOrResolveRequestFailed(
server_addr_, SERVER_NOT_REACHABLE_ERROR, port_->OnStunBindingOrResolveRequestFailed(server_addr_);
"STUN allocate request timed out.");
} }
private: private:
@ -108,7 +104,6 @@ class StunBindingRequest : public StunRequest {
int lifetime = port_->stun_keepalive_lifetime(); int lifetime = port_->stun_keepalive_lifetime();
return lifetime < 0 || rtc::TimeDiff(now, start_time_) <= lifetime; return lifetime < 0 || rtc::TimeDiff(now, start_time_) <= lifetime;
} }
UDPPort* port_; UDPPort* port_;
const rtc::SocketAddress server_addr_; const rtc::SocketAddress server_addr_;
@ -450,8 +445,7 @@ void UDPPort::OnResolveResult(const rtc::SocketAddress& input, int error) {
RTC_LOG(LS_WARNING) << ToString() RTC_LOG(LS_WARNING) << ToString()
<< ": StunPort: stun host lookup received error " << ": StunPort: stun host lookup received error "
<< error; << error;
OnStunBindingOrResolveRequestFailed(input, SERVER_NOT_REACHABLE_ERROR, OnStunBindingOrResolveRequestFailed(input);
"STUN host lookup received error.");
return; return;
} }
@ -475,10 +469,8 @@ void UDPPort::SendStunBindingRequest(const rtc::SocketAddress& stun_addr) {
} else { } else {
// Since we can't send stun messages to the server, we should mark this // Since we can't send stun messages to the server, we should mark this
// port ready. // port ready.
const char* reason = "STUN server address is incompatible."; RTC_LOG(LS_WARNING) << "STUN server address is incompatible.";
RTC_LOG(LS_WARNING) << reason; OnStunBindingOrResolveRequestFailed(stun_addr);
OnStunBindingOrResolveRequestFailed(stun_addr, SERVER_NOT_REACHABLE_ERROR,
reason);
} }
} }
} }
@ -538,14 +530,7 @@ void UDPPort::OnStunBindingRequestSucceeded(
} }
void UDPPort::OnStunBindingOrResolveRequestFailed( void UDPPort::OnStunBindingOrResolveRequestFailed(
const rtc::SocketAddress& stun_server_addr, const rtc::SocketAddress& stun_server_addr) {
int error_code,
const std::string& reason) {
rtc::StringBuilder url;
url << "stun:" << stun_server_addr.ToString();
SignalCandidateError(
this, IceCandidateErrorEvent(GetLocalAddress().ToSensitiveString(),
url.str(), error_code, reason));
if (bind_request_failed_servers_.find(stun_server_addr) != if (bind_request_failed_servers_.find(stun_server_addr) !=
bind_request_failed_servers_.end()) { bind_request_failed_servers_.end()) {
return; return;

View File

@ -222,9 +222,7 @@ class UDPPort : public Port {
const rtc::SocketAddress& stun_server_addr, const rtc::SocketAddress& stun_server_addr,
const rtc::SocketAddress& stun_reflected_addr); const rtc::SocketAddress& stun_reflected_addr);
void OnStunBindingOrResolveRequestFailed( void OnStunBindingOrResolveRequestFailed(
const rtc::SocketAddress& stun_server_addr, const rtc::SocketAddress& stun_server_addr);
int error_code,
const std::string& reason);
// Sends STUN requests to the server. // Sends STUN requests to the server.
void OnSendPacket(const void* data, size_t size, StunRequest* req); void OnSendPacket(const void* data, size_t size, StunRequest* req);

View File

@ -88,8 +88,6 @@ class StunPortTestBase : public ::testing::Test, public sigslot::has_slots<> {
stun_port_->SignalPortComplete.connect(this, stun_port_->SignalPortComplete.connect(this,
&StunPortTestBase::OnPortComplete); &StunPortTestBase::OnPortComplete);
stun_port_->SignalPortError.connect(this, &StunPortTestBase::OnPortError); stun_port_->SignalPortError.connect(this, &StunPortTestBase::OnPortError);
stun_port_->SignalCandidateError.connect(
this, &StunPortTestBase::OnCandidateError);
} }
void CreateSharedUdpPort(const rtc::SocketAddress& server_addr, void CreateSharedUdpPort(const rtc::SocketAddress& server_addr,
@ -147,10 +145,6 @@ class StunPortTestBase : public ::testing::Test, public sigslot::has_slots<> {
done_ = true; done_ = true;
error_ = true; error_ = true;
} }
void OnCandidateError(cricket::Port* port,
const cricket::IceCandidateErrorEvent& event) {
error_event_ = event;
}
void SetKeepaliveDelay(int delay) { stun_keepalive_delay_ = delay; } void SetKeepaliveDelay(int delay) { stun_keepalive_delay_ = delay; }
void SetKeepaliveLifetime(int lifetime) { void SetKeepaliveLifetime(int lifetime) {
@ -173,9 +167,6 @@ class StunPortTestBase : public ::testing::Test, public sigslot::has_slots<> {
bool error_; bool error_;
int stun_keepalive_delay_; int stun_keepalive_delay_;
int stun_keepalive_lifetime_; int stun_keepalive_lifetime_;
protected:
cricket::IceCandidateErrorEvent error_event_;
}; };
class StunPortTestWithRealClock : public StunPortTestBase {}; class StunPortTestWithRealClock : public StunPortTestBase {};
@ -221,15 +212,6 @@ TEST_F(StunPortTest, TestPrepareAddressFail) {
EXPECT_TRUE_SIMULATED_WAIT(done(), kTimeoutMs, fake_clock); EXPECT_TRUE_SIMULATED_WAIT(done(), kTimeoutMs, fake_clock);
EXPECT_TRUE(error()); EXPECT_TRUE(error());
EXPECT_EQ(0U, port()->Candidates().size()); EXPECT_EQ(0U, port()->Candidates().size());
EXPECT_EQ_SIMULATED_WAIT(error_event_.error_code,
cricket::SERVER_NOT_REACHABLE_ERROR, kTimeoutMs,
fake_clock);
ASSERT_NE(error_event_.error_text.find("."), std::string::npos);
ASSERT_NE(
error_event_.host_candidate.find(kLocalAddr.HostAsSensitiveURIString()),
std::string::npos);
std::string server_url = "stun:" + kBadAddr.ToString();
ASSERT_EQ(error_event_.url, server_url);
} }
// Test that we can get an address from a STUN server specified by a hostname. // Test that we can get an address from a STUN server specified by a hostname.
@ -255,8 +237,6 @@ TEST_F(StunPortTestWithRealClock, TestPrepareAddressHostnameFail) {
EXPECT_TRUE_WAIT(done(), kTimeoutMs); EXPECT_TRUE_WAIT(done(), kTimeoutMs);
EXPECT_TRUE(error()); EXPECT_TRUE(error());
EXPECT_EQ(0U, port()->Candidates().size()); EXPECT_EQ(0U, port()->Candidates().size());
EXPECT_EQ_WAIT(error_event_.error_code, cricket::SERVER_NOT_REACHABLE_ERROR,
kTimeoutMs);
} }
// This test verifies keepalive response messages don't result in // This test verifies keepalive response messages don't result in
@ -323,9 +303,6 @@ TEST_F(StunPortTest, TestMultipleStunServersWithBadServer) {
PrepareAddress(); PrepareAddress();
EXPECT_TRUE_SIMULATED_WAIT(done(), kTimeoutMs, fake_clock); EXPECT_TRUE_SIMULATED_WAIT(done(), kTimeoutMs, fake_clock);
EXPECT_EQ(1U, port()->Candidates().size()); EXPECT_EQ(1U, port()->Candidates().size());
std::string server_url = "stun:" + kBadAddr.ToString();
ASSERT_EQ_SIMULATED_WAIT(error_event_.url, server_url, kTimeoutMs,
fake_clock);
} }
// Test that two candidates are allocated if the two STUN servers return // Test that two candidates are allocated if the two STUN servers return

View File

@ -326,8 +326,7 @@ void TurnPort::PrepareAddress() {
if (credentials_.username.empty() || credentials_.password.empty()) { if (credentials_.username.empty() || credentials_.password.empty()) {
RTC_LOG(LS_ERROR) << "Allocation can't be started without setting the" RTC_LOG(LS_ERROR) << "Allocation can't be started without setting the"
" TURN server credentials for the user."; " TURN server credentials for the user.";
OnAllocateError(STUN_ERROR_UNAUTHORIZED, OnAllocateError();
"Missing TURN server credentials.");
return; return;
} }
@ -344,8 +343,7 @@ void TurnPort::PrepareAddress() {
RTC_LOG(LS_ERROR) << "IP address family does not match. server: " RTC_LOG(LS_ERROR) << "IP address family does not match. server: "
<< server_address_.address.family() << server_address_.address.family()
<< " local: " << Network()->GetBestIP().family(); << " local: " << Network()->GetBestIP().family();
OnAllocateError(STUN_ERROR_GLOBAL_FAILURE, OnAllocateError();
"IP address family does not match.");
return; return;
} }
@ -357,8 +355,7 @@ void TurnPort::PrepareAddress() {
<< server_address_.address.ToSensitiveString(); << server_address_.address.ToSensitiveString();
if (!CreateTurnClientSocket()) { if (!CreateTurnClientSocket()) {
RTC_LOG(LS_ERROR) << "Failed to create TURN client socket"; RTC_LOG(LS_ERROR) << "Failed to create TURN client socket";
OnAllocateError(STUN_ERROR_GLOBAL_FAILURE, OnAllocateError();
"Failed to create TURN client socket.");
return; return;
} }
if (server_address_.proto == PROTO_UDP) { if (server_address_.proto == PROTO_UDP) {
@ -476,9 +473,7 @@ void TurnPort::OnSocketConnect(rtc::AsyncPacketSocket* socket) {
<< socket_address.ipaddr().ToString() << socket_address.ipaddr().ToString()
<< ", rather than an address associated with network:" << ", rather than an address associated with network:"
<< Network()->ToString() << ". Discarding TURN port."; << Network()->ToString() << ". Discarding TURN port.";
OnAllocateError( OnAllocateError();
STUN_ERROR_GLOBAL_FAILURE,
"Address not associated with the desired network interface.");
return; return;
} }
} }
@ -506,8 +501,7 @@ void TurnPort::OnAllocateMismatch() {
RTC_LOG(LS_WARNING) << ToString() << ": Giving up on the port after " RTC_LOG(LS_WARNING) << ToString() << ": Giving up on the port after "
<< allocate_mismatch_retries_ << allocate_mismatch_retries_
<< " retries for STUN_ERROR_ALLOCATION_MISMATCH"; << " retries for STUN_ERROR_ALLOCATION_MISMATCH";
OnAllocateError(STUN_ERROR_ALLOCATION_MISMATCH, OnAllocateError();
"Maximum retries reached for allocation mismatch.");
return; return;
} }
@ -792,8 +786,7 @@ void TurnPort::OnResolveResult(rtc::AsyncResolverInterface* resolver) {
if (resolver_->GetError() != 0 && (server_address_.proto == PROTO_TCP || if (resolver_->GetError() != 0 && (server_address_.proto == PROTO_TCP ||
server_address_.proto == PROTO_TLS)) { server_address_.proto == PROTO_TLS)) {
if (!CreateTurnClientSocket()) { if (!CreateTurnClientSocket()) {
OnAllocateError(SERVER_NOT_REACHABLE_ERROR, OnAllocateError();
"TURN host lookup received error.");
} }
return; return;
} }
@ -807,8 +800,7 @@ void TurnPort::OnResolveResult(rtc::AsyncResolverInterface* resolver) {
RTC_LOG(LS_WARNING) << ToString() << ": TURN host lookup received error " RTC_LOG(LS_WARNING) << ToString() << ": TURN host lookup received error "
<< resolver_->GetError(); << resolver_->GetError();
error_ = resolver_->GetError(); error_ = resolver_->GetError();
OnAllocateError(SERVER_NOT_REACHABLE_ERROR, OnAllocateError();
"TURN host lookup received error.");
return; return;
} }
// Signal needs both resolved and unresolved address. After signal is sent // Signal needs both resolved and unresolved address. After signal is sent
@ -855,20 +847,14 @@ void TurnPort::OnAllocateSuccess(const rtc::SocketAddress& address,
ProtoToString(server_address_.proto), // The first hop protocol. ProtoToString(server_address_.proto), // The first hop protocol.
"", // TCP canddiate type, empty for turn candidates. "", // TCP canddiate type, empty for turn candidates.
RELAY_PORT_TYPE, GetRelayPreference(server_address_.proto), RELAY_PORT_TYPE, GetRelayPreference(server_address_.proto),
server_priority_, ReconstructedServerUrl(false /* use_hostname */), server_priority_, ReconstructedServerUrl(), true);
true);
} }
void TurnPort::OnAllocateError(int error_code, const std::string& reason) { void TurnPort::OnAllocateError() {
// We will send SignalPortError asynchronously as this can be sent during // We will send SignalPortError asynchronously as this can be sent during
// port initialization. This way it will not be blocking other port // port initialization. This way it will not be blocking other port
// creation. // creation.
thread()->Post(RTC_FROM_HERE, this, MSG_ALLOCATE_ERROR); thread()->Post(RTC_FROM_HERE, this, MSG_ALLOCATE_ERROR);
SignalCandidateError(
this,
IceCandidateErrorEvent(GetLocalAddress().ToSensitiveString(),
ReconstructedServerUrl(true /* use_hostname */),
error_code, reason));
} }
void TurnPort::OnRefreshError() { void TurnPort::OnRefreshError() {
@ -901,7 +887,7 @@ void TurnPort::Release() {
void TurnPort::Close() { void TurnPort::Close() {
if (!ready()) { if (!ready()) {
OnAllocateError(SERVER_NOT_REACHABLE_ERROR, ""); OnAllocateError();
} }
request_manager_.Clear(); request_manager_.Clear();
// Stop the port from creating new connections. // Stop the port from creating new connections.
@ -955,8 +941,7 @@ void TurnPort::OnMessage(rtc::Message* message) {
} }
void TurnPort::OnAllocateRequestTimeout() { void TurnPort::OnAllocateRequestTimeout() {
OnAllocateError(SERVER_NOT_REACHABLE_ERROR, OnAllocateError();
"TURN allocate request timed out.");
} }
void TurnPort::HandleDataIndication(const char* data, void TurnPort::HandleDataIndication(const char* data,
@ -1264,7 +1249,7 @@ bool TurnPort::SetEntryChannelId(const rtc::SocketAddress& address,
return true; return true;
} }
std::string TurnPort::ReconstructedServerUrl(bool use_hostname) { std::string TurnPort::ReconstructedServerUrl() {
// draft-petithuguenin-behave-turn-uris-01 // draft-petithuguenin-behave-turn-uris-01
// turnURI = scheme ":" turn-host [ ":" turn-port ] // turnURI = scheme ":" turn-host [ ":" turn-port ]
// [ "?transport=" transport ] // [ "?transport=" transport ]
@ -1287,10 +1272,8 @@ std::string TurnPort::ReconstructedServerUrl(bool use_hostname) {
break; break;
} }
rtc::StringBuilder url; rtc::StringBuilder url;
url << scheme << ":" url << scheme << ":" << server_address_.address.ipaddr().ToString() << ":"
<< (use_hostname ? server_address_.address.hostname() << server_address_.address.port() << "?transport=" << transport;
: server_address_.address.ipaddr().ToString())
<< ":" << server_address_.address.port() << "?transport=" << transport;
return url.Release(); return url.Release();
} }
@ -1405,8 +1388,7 @@ void TurnAllocateRequest::OnErrorResponse(StunMessage* response) {
<< ": Received TURN allocate error response, id=" << ": Received TURN allocate error response, id="
<< rtc::hex_encode(id()) << ", code=" << error_code << rtc::hex_encode(id()) << ", code=" << error_code
<< ", rtt=" << Elapsed(); << ", rtt=" << Elapsed();
const StunErrorCodeAttribute* attr = response->GetErrorCode(); port_->OnAllocateError();
port_->OnAllocateError(error_code, attr ? attr->reason() : "");
} }
} }
@ -1422,8 +1404,7 @@ void TurnAllocateRequest::OnAuthChallenge(StunMessage* response, int code) {
RTC_LOG(LS_WARNING) << port_->ToString() RTC_LOG(LS_WARNING) << port_->ToString()
<< ": Failed to authenticate with the server " << ": Failed to authenticate with the server "
"after challenge."; "after challenge.";
const StunErrorCodeAttribute* attr = response->GetErrorCode(); port_->OnAllocateError();
port_->OnAllocateError(STUN_ERROR_UNAUTHORIZED, attr ? attr->reason() : "");
return; return;
} }
@ -1456,7 +1437,7 @@ void TurnAllocateRequest::OnTryAlternate(StunMessage* response, int code) {
// According to RFC 5389 section 11, there are use cases where // According to RFC 5389 section 11, there are use cases where
// authentication of response is not possible, we're not validating // authentication of response is not possible, we're not validating
// message integrity. // message integrity.
const StunErrorCodeAttribute* error_code_attr = response->GetErrorCode();
// Get the alternate server address attribute value. // Get the alternate server address attribute value.
const StunAddressAttribute* alternate_server_attr = const StunAddressAttribute* alternate_server_attr =
response->GetAddress(STUN_ATTR_ALTERNATE_SERVER); response->GetAddress(STUN_ATTR_ALTERNATE_SERVER);
@ -1464,13 +1445,11 @@ void TurnAllocateRequest::OnTryAlternate(StunMessage* response, int code) {
RTC_LOG(LS_WARNING) << port_->ToString() RTC_LOG(LS_WARNING) << port_->ToString()
<< ": Missing STUN_ATTR_ALTERNATE_SERVER " << ": Missing STUN_ATTR_ALTERNATE_SERVER "
"attribute in try alternate error response"; "attribute in try alternate error response";
port_->OnAllocateError(STUN_ERROR_TRY_ALTERNATE, port_->OnAllocateError();
error_code_attr ? error_code_attr->reason() : "");
return; return;
} }
if (!port_->SetAlternateServer(alternate_server_attr->GetAddress())) { if (!port_->SetAlternateServer(alternate_server_attr->GetAddress())) {
port_->OnAllocateError(STUN_ERROR_TRY_ALTERNATE, port_->OnAllocateError();
error_code_attr ? error_code_attr->reason() : "");
return; return;
} }

View File

@ -310,7 +310,7 @@ class TurnPort : public Port {
void OnStunAddress(const rtc::SocketAddress& address); void OnStunAddress(const rtc::SocketAddress& address);
void OnAllocateSuccess(const rtc::SocketAddress& address, void OnAllocateSuccess(const rtc::SocketAddress& address,
const rtc::SocketAddress& stun_address); const rtc::SocketAddress& stun_address);
void OnAllocateError(int error_code, const std::string& reason); void OnAllocateError();
void OnAllocateRequestTimeout(); void OnAllocateRequestTimeout();
void HandleDataIndication(const char* data, void HandleDataIndication(const char* data,
@ -349,7 +349,7 @@ class TurnPort : public Port {
bool FailAndPruneConnection(const rtc::SocketAddress& address); bool FailAndPruneConnection(const rtc::SocketAddress& address);
// Reconstruct the URL of the server which the candidate is gathered from. // Reconstruct the URL of the server which the candidate is gathered from.
std::string ReconstructedServerUrl(bool use_hostname); std::string ReconstructedServerUrl();
void TurnCustomizerMaybeModifyOutgoingStunMessage(StunMessage* message); void TurnCustomizerMaybeModifyOutgoingStunMessage(StunMessage* message);
bool TurnCustomizerAllowChannelData(const void* data, bool TurnCustomizerAllowChannelData(const void* data,

View File

@ -66,7 +66,6 @@ static const SocketAddress kTurnIPv6IntAddr(
static const SocketAddress kTurnUdpIPv6IntAddr( static const SocketAddress kTurnUdpIPv6IntAddr(
"2400:4030:1:2c00:be30:abcd:efab:cdef", "2400:4030:1:2c00:be30:abcd:efab:cdef",
cricket::TURN_SERVER_PORT); cricket::TURN_SERVER_PORT);
static const SocketAddress kTurnInvalidAddr("www.google.invalid", 3478);
static const char kCandidateFoundation[] = "foundation"; static const char kCandidateFoundation[] = "foundation";
static const char kIceUfrag1[] = "TESTICEUFRAG0001"; static const char kIceUfrag1[] = "TESTICEUFRAG0001";
@ -177,10 +176,6 @@ class TurnPortTest : public ::testing::Test,
void OnTurnPortComplete(Port* port) { turn_ready_ = true; } void OnTurnPortComplete(Port* port) { turn_ready_ = true; }
void OnTurnPortError(Port* port) { turn_error_ = true; } void OnTurnPortError(Port* port) { turn_error_ = true; }
void OnCandidateError(Port* port,
const cricket::IceCandidateErrorEvent& event) {
error_event_ = event;
}
void OnTurnUnknownAddress(PortInterface* port, void OnTurnUnknownAddress(PortInterface* port,
const SocketAddress& addr, const SocketAddress& addr,
ProtocolType proto, ProtocolType proto,
@ -321,8 +316,6 @@ class TurnPortTest : public ::testing::Test,
turn_port_->SignalPortComplete.connect(this, turn_port_->SignalPortComplete.connect(this,
&TurnPortTest::OnTurnPortComplete); &TurnPortTest::OnTurnPortComplete);
turn_port_->SignalPortError.connect(this, &TurnPortTest::OnTurnPortError); turn_port_->SignalPortError.connect(this, &TurnPortTest::OnTurnPortError);
turn_port_->SignalCandidateError.connect(this,
&TurnPortTest::OnCandidateError);
turn_port_->SignalUnknownAddress.connect( turn_port_->SignalUnknownAddress.connect(
this, &TurnPortTest::OnTurnUnknownAddress); this, &TurnPortTest::OnTurnUnknownAddress);
turn_port_->SignalCreatePermissionResult.connect( turn_port_->SignalCreatePermissionResult.connect(
@ -762,7 +755,6 @@ class TurnPortTest : public ::testing::Test,
std::vector<rtc::Buffer> udp_packets_; std::vector<rtc::Buffer> udp_packets_;
rtc::PacketOptions options; rtc::PacketOptions options;
std::unique_ptr<webrtc::TurnCustomizer> turn_customizer_; std::unique_ptr<webrtc::TurnCustomizer> turn_customizer_;
cricket::IceCandidateErrorEvent error_event_;
}; };
TEST_F(TurnPortTest, TestTurnPortType) { TEST_F(TurnPortTest, TestTurnPortType) {
@ -810,17 +802,6 @@ TEST_F(TurnPortTest, TestTurnAllocate) {
EXPECT_NE(0, turn_port_->Candidates()[0].address().port()); EXPECT_NE(0, turn_port_->Candidates()[0].address().port());
} }
// Test bad credentials.
TEST_F(TurnPortTest, TestTurnBadCredentials) {
CreateTurnPort(kTurnUsername, "bad", kTurnUdpProtoAddr);
turn_port_->PrepareAddress();
EXPECT_TRUE_SIMULATED_WAIT(turn_error_, kSimulatedRtt * 3, fake_clock_);
ASSERT_EQ(0U, turn_port_->Candidates().size());
EXPECT_EQ_SIMULATED_WAIT(error_event_.error_code, STUN_ERROR_UNAUTHORIZED,
kSimulatedRtt * 3, fake_clock_);
EXPECT_EQ(error_event_.error_text, "Unauthorized");
}
// Testing a normal UDP allocation using TCP connection. // Testing a normal UDP allocation using TCP connection.
TEST_F(TurnPortTest, TestTurnTcpAllocate) { TEST_F(TurnPortTest, TestTurnTcpAllocate) {
turn_server_.AddInternalSocket(kTurnTcpIntAddr, PROTO_TCP); turn_server_.AddInternalSocket(kTurnTcpIntAddr, PROTO_TCP);
@ -880,15 +861,6 @@ TEST_F(TurnPortTest,
// Shouldn't take more than 1 RTT to realize the bound address isn't the one // Shouldn't take more than 1 RTT to realize the bound address isn't the one
// expected. // expected.
EXPECT_TRUE_SIMULATED_WAIT(turn_error_, kSimulatedRtt, fake_clock_); EXPECT_TRUE_SIMULATED_WAIT(turn_error_, kSimulatedRtt, fake_clock_);
EXPECT_EQ_SIMULATED_WAIT(error_event_.error_code, STUN_ERROR_GLOBAL_FAILURE,
kSimulatedRtt, fake_clock_);
ASSERT_NE(error_event_.error_text.find("."), std::string::npos);
ASSERT_NE(
error_event_.host_candidate.find(kLocalAddr2.HostAsSensitiveURIString()),
std::string::npos);
std::string server_url =
"turn:" + kTurnTcpIntAddr.ToString() + "?transport=tcp";
ASSERT_EQ(error_event_.url, server_url);
} }
// A caveat for the above logic: if the socket ends up bound to one of the IPs // A caveat for the above logic: if the socket ends up bound to one of the IPs
@ -949,18 +921,14 @@ TEST_F(TurnPortTest, TCPPortNotDiscardedIfBoundToTemporaryIP) {
TEST_F(TurnPortTest, TestTurnTcpOnAddressResolveFailure) { TEST_F(TurnPortTest, TestTurnTcpOnAddressResolveFailure) {
turn_server_.AddInternalSocket(kTurnTcpIntAddr, PROTO_TCP); turn_server_.AddInternalSocket(kTurnTcpIntAddr, PROTO_TCP);
CreateTurnPort(kTurnUsername, kTurnPassword, CreateTurnPort(kTurnUsername, kTurnPassword,
ProtocolAddress(kTurnInvalidAddr, PROTO_TCP)); ProtocolAddress(rtc::SocketAddress("www.google.invalid", 3478),
PROTO_TCP));
turn_port_->PrepareAddress(); turn_port_->PrepareAddress();
EXPECT_TRUE_WAIT(turn_error_, kResolverTimeout); EXPECT_TRUE_WAIT(turn_error_, kResolverTimeout);
// As VSS doesn't provide a DNS resolution, name resolve will fail. TurnPort // As VSS doesn't provide a DNS resolution, name resolve will fail. TurnPort
// will proceed in creating a TCP socket which will fail as there is no // will proceed in creating a TCP socket which will fail as there is no
// server on the above domain and error will be set to SOCKET_ERROR. // server on the above domain and error will be set to SOCKET_ERROR.
EXPECT_EQ(SOCKET_ERROR, turn_port_->error()); EXPECT_EQ(SOCKET_ERROR, turn_port_->error());
EXPECT_EQ_SIMULATED_WAIT(error_event_.error_code, SERVER_NOT_REACHABLE_ERROR,
kSimulatedRtt, fake_clock_);
std::string server_url =
"turn:" + kTurnInvalidAddr.ToString() + "?transport=tcp";
ASSERT_EQ(error_event_.url, server_url);
} }
// Testing turn port will attempt to create TLS socket on address resolution // Testing turn port will attempt to create TLS socket on address resolution
@ -968,7 +936,8 @@ TEST_F(TurnPortTest, TestTurnTcpOnAddressResolveFailure) {
TEST_F(TurnPortTest, TestTurnTlsOnAddressResolveFailure) { TEST_F(TurnPortTest, TestTurnTlsOnAddressResolveFailure) {
turn_server_.AddInternalSocket(kTurnTcpIntAddr, PROTO_TLS); turn_server_.AddInternalSocket(kTurnTcpIntAddr, PROTO_TLS);
CreateTurnPort(kTurnUsername, kTurnPassword, CreateTurnPort(kTurnUsername, kTurnPassword,
ProtocolAddress(kTurnInvalidAddr, PROTO_TLS)); ProtocolAddress(rtc::SocketAddress("www.google.invalid", 3478),
PROTO_TLS));
turn_port_->PrepareAddress(); turn_port_->PrepareAddress();
EXPECT_TRUE_WAIT(turn_error_, kResolverTimeout); EXPECT_TRUE_WAIT(turn_error_, kResolverTimeout);
EXPECT_EQ(SOCKET_ERROR, turn_port_->error()); EXPECT_EQ(SOCKET_ERROR, turn_port_->error());
@ -978,7 +947,8 @@ TEST_F(TurnPortTest, TestTurnTlsOnAddressResolveFailure) {
// and return allocate failure. // and return allocate failure.
TEST_F(TurnPortTest, TestTurnUdpOnAddressResolveFailure) { TEST_F(TurnPortTest, TestTurnUdpOnAddressResolveFailure) {
CreateTurnPort(kTurnUsername, kTurnPassword, CreateTurnPort(kTurnUsername, kTurnPassword,
ProtocolAddress(kTurnInvalidAddr, PROTO_UDP)); ProtocolAddress(rtc::SocketAddress("www.google.invalid", 3478),
PROTO_UDP));
turn_port_->PrepareAddress(); turn_port_->PrepareAddress();
EXPECT_TRUE_WAIT(turn_error_, kResolverTimeout); EXPECT_TRUE_WAIT(turn_error_, kResolverTimeout);
// Error from turn port will not be socket error. // Error from turn port will not be socket error.

View File

@ -953,8 +953,6 @@ void BasicPortAllocatorSession::AddAllocatedPort(Port* port,
port->SignalCandidateReady.connect( port->SignalCandidateReady.connect(
this, &BasicPortAllocatorSession::OnCandidateReady); this, &BasicPortAllocatorSession::OnCandidateReady);
port->SignalCandidateError.connect(
this, &BasicPortAllocatorSession::OnCandidateError);
port->SignalPortComplete.connect(this, port->SignalPortComplete.connect(this,
&BasicPortAllocatorSession::OnPortComplete); &BasicPortAllocatorSession::OnPortComplete);
port->SignalDestroyed.connect(this, port->SignalDestroyed.connect(this,
@ -1026,15 +1024,6 @@ void BasicPortAllocatorSession::OnCandidateReady(Port* port,
} }
} }
void BasicPortAllocatorSession::OnCandidateError(
Port* port,
const IceCandidateErrorEvent& event) {
RTC_DCHECK_RUN_ON(network_thread_);
RTC_DCHECK(FindPort(port));
SignalCandidateError(this, event);
}
Port* BasicPortAllocatorSession::GetBestTurnPortForNetwork( Port* BasicPortAllocatorSession::GetBestTurnPortForNetwork(
const std::string& network_name) const { const std::string& network_name) const {
RTC_DCHECK_RUN_ON(network_thread_); RTC_DCHECK_RUN_ON(network_thread_);

View File

@ -231,7 +231,6 @@ class RTC_EXPORT BasicPortAllocatorSession : public PortAllocatorSession,
AllocationSequence* seq, AllocationSequence* seq,
bool prepare_address); bool prepare_address);
void OnCandidateReady(Port* port, const Candidate& c); void OnCandidateReady(Port* port, const Candidate& c);
void OnCandidateError(Port* port, const IceCandidateErrorEvent& event);
void OnPortComplete(Port* port); void OnPortComplete(Port* port);
void OnPortError(Port* port); void OnPortError(Port* port);
void OnProtocolEnabled(AllocationSequence* seq, ProtocolType proto); void OnProtocolEnabled(AllocationSequence* seq, ProtocolType proto);

View File

@ -523,8 +523,6 @@ JsepTransportController::CreateDtlsTransport(
this, &JsepTransportController::OnTransportGatheringState_n); this, &JsepTransportController::OnTransportGatheringState_n);
dtls->ice_transport()->SignalCandidateGathered.connect( dtls->ice_transport()->SignalCandidateGathered.connect(
this, &JsepTransportController::OnTransportCandidateGathered_n); this, &JsepTransportController::OnTransportCandidateGathered_n);
dtls->ice_transport()->SignalCandidateError.connect(
this, &JsepTransportController::OnTransportCandidateError_n);
dtls->ice_transport()->SignalCandidatesRemoved.connect( dtls->ice_transport()->SignalCandidatesRemoved.connect(
this, &JsepTransportController::OnTransportCandidatesRemoved_n); this, &JsepTransportController::OnTransportCandidatesRemoved_n);
dtls->ice_transport()->SignalRoleConflict.connect( dtls->ice_transport()->SignalRoleConflict.connect(
@ -1379,14 +1377,6 @@ void JsepTransportController::OnTransportCandidateGathered_n(
}); });
} }
void JsepTransportController::OnTransportCandidateError_n(
cricket::IceTransportInternal* transport,
const cricket::IceCandidateErrorEvent& event) {
RTC_DCHECK(network_thread_->IsCurrent());
invoker_.AsyncInvoke<void>(RTC_FROM_HERE, signaling_thread_,
[this, event] { SignalIceCandidateError(event); });
}
void JsepTransportController::OnTransportCandidatesRemoved_n( void JsepTransportController::OnTransportCandidatesRemoved_n(
cricket::IceTransportInternal* transport, cricket::IceTransportInternal* transport,
const cricket::Candidates& candidates) { const cricket::Candidates& candidates) {

View File

@ -235,9 +235,6 @@ class JsepTransportController : public sigslot::has_slots<> {
sigslot::signal2<const std::string&, const std::vector<cricket::Candidate>&> sigslot::signal2<const std::string&, const std::vector<cricket::Candidate>&>
SignalIceCandidatesGathered; SignalIceCandidatesGathered;
sigslot::signal1<const cricket::IceCandidateErrorEvent&>
SignalIceCandidateError;
sigslot::signal1<const std::vector<cricket::Candidate>&> sigslot::signal1<const std::vector<cricket::Candidate>&>
SignalIceCandidatesRemoved; SignalIceCandidatesRemoved;
@ -378,9 +375,6 @@ class JsepTransportController : public sigslot::has_slots<> {
void OnTransportGatheringState_n(cricket::IceTransportInternal* transport); void OnTransportGatheringState_n(cricket::IceTransportInternal* transport);
void OnTransportCandidateGathered_n(cricket::IceTransportInternal* transport, void OnTransportCandidateGathered_n(cricket::IceTransportInternal* transport,
const cricket::Candidate& candidate); const cricket::Candidate& candidate);
void OnTransportCandidateError_n(
cricket::IceTransportInternal* transport,
const cricket::IceCandidateErrorEvent& event);
void OnTransportCandidatesRemoved_n(cricket::IceTransportInternal* transport, void OnTransportCandidatesRemoved_n(cricket::IceTransportInternal* transport,
const cricket::Candidates& candidates); const cricket::Candidates& candidates);
void OnTransportRoleConflict_n(cricket::IceTransportInternal* transport); void OnTransportRoleConflict_n(cricket::IceTransportInternal* transport);

View File

@ -1075,8 +1075,6 @@ bool PeerConnection::Initialize(
this, &PeerConnection::OnTransportControllerGatheringState); this, &PeerConnection::OnTransportControllerGatheringState);
transport_controller_->SignalIceCandidatesGathered.connect( transport_controller_->SignalIceCandidatesGathered.connect(
this, &PeerConnection::OnTransportControllerCandidatesGathered); this, &PeerConnection::OnTransportControllerCandidatesGathered);
transport_controller_->SignalIceCandidateError.connect(
this, &PeerConnection::OnTransportControllerCandidateError);
transport_controller_->SignalIceCandidatesRemoved.connect( transport_controller_->SignalIceCandidatesRemoved.connect(
this, &PeerConnection::OnTransportControllerCandidatesRemoved); this, &PeerConnection::OnTransportControllerCandidatesRemoved);
transport_controller_->SignalDtlsHandshakeError.connect( transport_controller_->SignalDtlsHandshakeError.connect(
@ -4171,16 +4169,6 @@ void PeerConnection::OnIceCandidate(
Observer()->OnIceCandidate(candidate.get()); Observer()->OnIceCandidate(candidate.get());
} }
void PeerConnection::OnIceCandidateError(const std::string& host_candidate,
const std::string& url,
int error_code,
const std::string& error_text) {
if (IsClosed()) {
return;
}
Observer()->OnIceCandidateError(host_candidate, url, error_code, error_text);
}
void PeerConnection::OnIceCandidatesRemoved( void PeerConnection::OnIceCandidatesRemoved(
const std::vector<cricket::Candidate>& candidates) { const std::vector<cricket::Candidate>& candidates) {
if (IsClosed()) { if (IsClosed()) {
@ -6119,12 +6107,6 @@ void PeerConnection::OnTransportControllerCandidatesGathered(
} }
} }
void PeerConnection::OnTransportControllerCandidateError(
const cricket::IceCandidateErrorEvent& event) {
OnIceCandidateError(event.host_candidate, event.url, event.error_code,
event.error_text);
}
void PeerConnection::OnTransportControllerCandidatesRemoved( void PeerConnection::OnTransportControllerCandidatesRemoved(
const std::vector<cricket::Candidate>& candidates) { const std::vector<cricket::Candidate>& candidates) {
// Sanity check. // Sanity check.

View File

@ -413,18 +413,12 @@ class PeerConnection : public PeerConnectionInternal,
PeerConnectionInterface::PeerConnectionState new_state) PeerConnectionInterface::PeerConnectionState new_state)
RTC_RUN_ON(signaling_thread()); RTC_RUN_ON(signaling_thread());
// Called any time the IceGatheringState changes. // Called any time the IceGatheringState changes
void OnIceGatheringChange(IceGatheringState new_state) void OnIceGatheringChange(IceGatheringState new_state)
RTC_RUN_ON(signaling_thread()); RTC_RUN_ON(signaling_thread());
// New ICE candidate has been gathered. // New ICE candidate has been gathered.
void OnIceCandidate(std::unique_ptr<IceCandidateInterface> candidate) void OnIceCandidate(std::unique_ptr<IceCandidateInterface> candidate)
RTC_RUN_ON(signaling_thread()); RTC_RUN_ON(signaling_thread());
// Gathering of an ICE candidate failed.
void OnIceCandidateError(const std::string& host_candidate,
const std::string& url,
int error_code,
const std::string& error_text)
RTC_RUN_ON(signaling_thread());
// Some local ICE candidates have been removed. // Some local ICE candidates have been removed.
void OnIceCandidatesRemoved(const std::vector<cricket::Candidate>& candidates) void OnIceCandidatesRemoved(const std::vector<cricket::Candidate>& candidates)
RTC_RUN_ON(signaling_thread()); RTC_RUN_ON(signaling_thread());
@ -1006,9 +1000,6 @@ class PeerConnection : public PeerConnectionInternal,
const std::string& transport_name, const std::string& transport_name,
const std::vector<cricket::Candidate>& candidates) const std::vector<cricket::Candidate>& candidates)
RTC_RUN_ON(signaling_thread()); RTC_RUN_ON(signaling_thread());
void OnTransportControllerCandidateError(
const cricket::IceCandidateErrorEvent& event)
RTC_RUN_ON(signaling_thread());
void OnTransportControllerCandidatesRemoved( void OnTransportControllerCandidatesRemoved(
const std::vector<cricket::Candidate>& candidates) const std::vector<cricket::Candidate>& candidates)
RTC_RUN_ON(signaling_thread()); RTC_RUN_ON(signaling_thread());

View File

@ -565,9 +565,6 @@ class PeerConnectionWrapper : public webrtc::PeerConnectionObserver,
const cricket::Candidate& last_candidate_gathered() const { const cricket::Candidate& last_candidate_gathered() const {
return last_candidate_gathered_; return last_candidate_gathered_;
} }
const cricket::IceCandidateErrorEvent& error_event() const {
return error_event_;
}
// Sets the mDNS responder for the owned fake network manager and keeps a // Sets the mDNS responder for the owned fake network manager and keeps a
// reference to the responder. // reference to the responder.
@ -961,13 +958,6 @@ class PeerConnectionWrapper : public webrtc::PeerConnectionObserver,
SendIceMessage(candidate->sdp_mid(), candidate->sdp_mline_index(), ice_sdp); SendIceMessage(candidate->sdp_mid(), candidate->sdp_mline_index(), ice_sdp);
last_candidate_gathered_ = candidate->candidate(); last_candidate_gathered_ = candidate->candidate();
} }
void OnIceCandidateError(const std::string& host_candidate,
const std::string& url,
int error_code,
const std::string& error_text) override {
error_event_ = cricket::IceCandidateErrorEvent(host_candidate, url,
error_code, error_text);
}
void OnDataChannel( void OnDataChannel(
rtc::scoped_refptr<DataChannelInterface> data_channel) override { rtc::scoped_refptr<DataChannelInterface> data_channel) override {
RTC_LOG(LS_INFO) << debug_name_ << ": OnDataChannel"; RTC_LOG(LS_INFO) << debug_name_ << ": OnDataChannel";
@ -1000,7 +990,6 @@ class PeerConnectionWrapper : public webrtc::PeerConnectionObserver,
int signaling_delay_ms_ = 0; int signaling_delay_ms_ = 0;
bool signal_ice_candidates_ = true; bool signal_ice_candidates_ = true;
cricket::Candidate last_candidate_gathered_; cricket::Candidate last_candidate_gathered_;
cricket::IceCandidateErrorEvent error_event_;
// Store references to the video sources we've created, so that we can stop // Store references to the video sources we've created, so that we can stop
// them, if required. // them, if required.
@ -5165,46 +5154,6 @@ TEST_P(PeerConnectionIntegrationTest, RegatherAfterChangingIceTransportType) {
ClosePeerConnections(); ClosePeerConnections();
} }
TEST_P(PeerConnectionIntegrationTest, OnIceCandidateError) {
webrtc::test::ScopedFieldTrials field_trials(
"WebRTC-GatherOnCandidateFilterChanged/Enabled/");
static const rtc::SocketAddress turn_server_internal_address{"88.88.88.0",
3478};
static const rtc::SocketAddress turn_server_external_address{"88.88.88.1", 0};
CreateTurnServer(turn_server_internal_address, turn_server_external_address);
webrtc::PeerConnectionInterface::IceServer ice_server;
ice_server.urls.push_back("turn:88.88.88.0:3478");
ice_server.username = "test";
ice_server.password = "123";
PeerConnectionInterface::RTCConfiguration caller_config;
caller_config.servers.push_back(ice_server);
caller_config.type = webrtc::PeerConnectionInterface::kRelay;
caller_config.continual_gathering_policy = PeerConnection::GATHER_CONTINUALLY;
PeerConnectionInterface::RTCConfiguration callee_config;
callee_config.servers.push_back(ice_server);
callee_config.type = webrtc::PeerConnectionInterface::kRelay;
callee_config.continual_gathering_policy = PeerConnection::GATHER_CONTINUALLY;
ASSERT_TRUE(
CreatePeerConnectionWrappersWithConfig(caller_config, callee_config));
// Do normal offer/answer and wait for ICE to complete.
ConnectFakeSignaling();
caller()->AddAudioVideoTracks();
callee()->AddAudioVideoTracks();
caller()->CreateAndSetAndSignalOffer();
ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
EXPECT_EQ_WAIT(401, caller()->error_event().error_code, kDefaultTimeout);
EXPECT_EQ("Unauthorized", caller()->error_event().error_text);
EXPECT_EQ("turn:88.88.88.0:3478?transport=udp", caller()->error_event().url);
EXPECT_NE(std::string::npos,
caller()->error_event().host_candidate.find(":"));
}
INSTANTIATE_TEST_SUITE_P(PeerConnectionIntegrationTest, INSTANTIATE_TEST_SUITE_P(PeerConnectionIntegrationTest,
PeerConnectionIntegrationTest, PeerConnectionIntegrationTest,
Values(SdpSemantics::kPlanB, Values(SdpSemantics::kPlanB,