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

Unified Diff: net/http/http_network_transaction.cc

Issue 661194: Make a proper TCPSocketParams (Closed)
Patch Set: Address comments Created 10 years, 10 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
« no previous file with comments | « no previous file | net/socket/client_socket_pool_base_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/http/http_network_transaction.cc
diff --git a/net/http/http_network_transaction.cc b/net/http/http_network_transaction.cc
index 5e770d3db712395770e93496920c1cda2e8a72f1..1c979bf1790add24a716485cb0505f382003d553 100644
--- a/net/http/http_network_transaction.cc
+++ b/net/http/http_network_transaction.cc
@@ -33,6 +33,7 @@
#include "net/socket/socks5_client_socket.h"
#include "net/socket/socks_client_socket.h"
#include "net/socket/ssl_client_socket.h"
+#include "net/socket/tcp_client_socket_pool.h"
#include "net/spdy/spdy_session.h"
#include "net/spdy/spdy_session_pool.h"
#include "net/spdy/spdy_stream.h"
@@ -655,6 +656,14 @@ int HttpNetworkTransaction::DoInitConnection() {
port = session_->fixed_http_port();
}
+ // Check first if we have a spdy session for this group. If so, then go
+ // straight to using that.
+ HostPortPair host_port_pair(host, port);
+ if (session_->spdy_session_pool()->HasSession(host_port_pair)) {
+ using_spdy_ = true;
+ return OK;
+ }
+
// For a connection via HTTP proxy not using CONNECT, the connection
// is to the proxy server only. For all other cases
// (direct, HTTP proxy CONNECT, SOCKS), the connection is upto the
@@ -664,30 +673,14 @@ int HttpNetworkTransaction::DoInitConnection() {
DCHECK(!connection_group.empty());
- HostResolver::RequestInfo resolve_info(host, port);
- resolve_info.set_priority(request_->priority);
-
- // The referrer is used by the DNS prefetch system to correlate resolutions
- // with the page that triggered them. It doesn't impact the actual addresses
- // that we resolve to.
- resolve_info.set_referrer(request_->referrer);
-
// If the user is refreshing the page, bypass the host cache.
- if (request_->load_flags & LOAD_BYPASS_CACHE ||
- request_->load_flags & LOAD_DISABLE_CACHE) {
- resolve_info.set_allow_cached_response(false);
- }
-
- HostPortPair host_port_pair(host, port);
+ bool disable_resolver_cache = request_->load_flags & LOAD_BYPASS_CACHE ||
+ request_->load_flags & LOAD_DISABLE_CACHE;
- // Check first if we have a spdy session for this group. If so, then go
- // straight to using that.
- if (session_->spdy_session_pool()->HasSession(host_port_pair)) {
- using_spdy_ = true;
- return OK;
- }
+ TCPSocketParams tcp_params(host, port, request_->priority, request_->referrer,
+ disable_resolver_cache);
- int rv = connection_->Init(connection_group, resolve_info, request_->priority,
+ int rv = connection_->Init(connection_group, tcp_params, request_->priority,
&io_callback_, session_->tcp_socket_pool(),
load_log_);
return rv;
« no previous file with comments | « no previous file | net/socket/client_socket_pool_base_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698