Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(564)

Unified Diff: net/spdy/spdy_network_transaction.cc

Issue 1808001: Implement a 15 connection per proxy server limit. (Closed) Base URL: http://src.chromium.org/git/chromium.git
Patch Set: Remove extra newline. Created 10 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: net/spdy/spdy_network_transaction.cc
diff --git a/net/spdy/spdy_network_transaction.cc b/net/spdy/spdy_network_transaction.cc
index 6a50fb28c1b3965787c7cdb64325efda8a55afa5..b0f35af5c4034a95653614c310a542bbd82afd9a 100644
--- a/net/spdy/spdy_network_transaction.cc
+++ b/net/spdy/spdy_network_transaction.cc
@@ -225,9 +225,9 @@ int SpdyNetworkTransaction::DoInitConnection() {
std::string connection_group = "spdy.";
connection_group.append(host);
- TCPSocketParams tcp_params(host, port, request_->priority, request_->referrer,
- false);
HostPortPair host_port_pair(host, port);
+ TCPSocketParams tcp_params(host_port_pair, request_->priority,
+ request_->referrer, false);
spdy_ = session_->spdy_session_pool()->Get(host_port_pair, session_);
DCHECK(spdy_);
« net/http/http_network_transaction.cc ('K') | « net/socket/tcp_client_socket_pool_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698