aboutsummaryrefslogtreecommitdiff
path: root/talk
diff options
context:
space:
mode:
authorbuildbot@webrtc.org <buildbot@webrtc.org>2014-11-07 17:58:41 +0000
committerbuildbot@webrtc.org <buildbot@webrtc.org>2014-11-07 17:58:41 +0000
commit3c1970f9f38d042e8eadb1a6bee74d99a2781e65 (patch)
treebc160eafb0c1d442927a26f9d07de573a69beb11 /talk
parent188d3b2245b49f21468840386d81b080176b434b (diff)
downloadwebrtc-3c1970f9f38d042e8eadb1a6bee74d99a2781e65.tar.gz
(Auto)update libjingle 79414100-> 79428003
git-svn-id: http://webrtc.googlecode.com/svn/trunk@7664 4adac7df-926f-26a2-2b94-8c16560cd09d
Diffstat (limited to 'talk')
-rw-r--r--talk/p2p/client/connectivitychecker.cc16
1 files changed, 5 insertions, 11 deletions
diff --git a/talk/p2p/client/connectivitychecker.cc b/talk/p2p/client/connectivitychecker.cc
index 38a7dd2f95..527e18a468 100644
--- a/talk/p2p/client/connectivitychecker.cc
+++ b/talk/p2p/client/connectivitychecker.cc
@@ -248,9 +248,7 @@ void ConnectivityChecker::OnRequestDone(rtc::AsyncHttpRequest* request) {
int port = request->port();
uint32 now = rtc::Time();
NicInfo* nic_info = &i->second;
- if (port == rtc::HTTP_DEFAULT_PORT) {
- nic_info->http.rtt = now - nic_info->http.start_time_ms;
- } else if (port == rtc::HTTP_SECURE_PORT) {
+ if (port == rtc::HTTP_SECURE_PORT) {
nic_info->https.rtt = now - nic_info->https.start_time_ms;
} else {
LOG(LS_ERROR) << "Got response with unknown port: " << port;
@@ -521,7 +519,7 @@ void ConnectivityChecker::InitiateProxyDetection() {
if (!proxy_detect_) {
proxy_detect_ = new rtc::AutoDetectProxy(user_agent_);
rtc::Url<char> host_url("/", "relay.google.com",
- rtc::HTTP_DEFAULT_PORT);
+ rtc::HTTP_SECURE_PORT);
host_url.set_secure(true);
proxy_detect_->set_server_url(host_url.url());
proxy_detect_->SignalWorkDone.connect(
@@ -545,13 +543,11 @@ void ConnectivityChecker::AllocateRelayPorts() {
allocator_session->SignalRequestDone.connect(
this, &ConnectivityChecker::OnRequestDone);
- // Try both http and https.
+ // Try https only since using http would result in credentials being sent
+ // over the network unprotected.
RegisterHttpStart(rtc::HTTP_SECURE_PORT);
allocator_session->SendSessionRequest("relay.l.google.com",
rtc::HTTP_SECURE_PORT);
- RegisterHttpStart(rtc::HTTP_DEFAULT_PORT);
- allocator_session->SendSessionRequest("relay.l.google.com",
- rtc::HTTP_DEFAULT_PORT);
sessions_.push_back(allocator_session);
}
@@ -575,9 +571,7 @@ void ConnectivityChecker::RegisterHttpStart(int port) {
if (i != nics_.end()) {
uint32 now = rtc::Time();
NicInfo* nic_info = &i->second;
- if (port == rtc::HTTP_DEFAULT_PORT) {
- nic_info->http.start_time_ms = now;
- } else if (port == rtc::HTTP_SECURE_PORT) {
+ if (port == rtc::HTTP_SECURE_PORT) {
nic_info->https.start_time_ms = now;
} else {
LOG(LS_ERROR) << "Registering start time for unknown port: " << port;