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

Unified Diff: net/http/http_network_session.cc

Issue 1613513003: Early connection migration in QUIC. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@home
Patch Set: Comments addressed. Created 4 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 | « net/http/http_network_session.h ('k') | net/quic/quic_chromium_client_session.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/http/http_network_session.cc
diff --git a/net/http/http_network_session.cc b/net/http/http_network_session.cc
index 1180dee10f48b85e74fb8ee6b2bfe6c6a69248f3..2e0ed5cc634a6f18b38fb453165febdcf8c88fad 100644
--- a/net/http/http_network_session.cc
+++ b/net/http/http_network_session.cc
@@ -132,6 +132,7 @@ HttpNetworkSession::Params::Params()
quic_idle_connection_timeout_seconds(kIdleConnectionTimeoutSeconds),
quic_disable_preconnect_if_0rtt(false),
quic_migrate_sessions_on_network_change(false),
+ quic_migrate_sessions_early(false),
proxy_delegate(NULL),
enable_token_binding(false) {
quic_supported_versions.push_back(QUIC_VERSION_26);
@@ -186,6 +187,7 @@ HttpNetworkSession::HttpNetworkSession(const Params& params)
params.disable_quic_on_timeout_with_open_streams,
params.quic_idle_connection_timeout_seconds,
params.quic_migrate_sessions_on_network_change,
+ params.quic_migrate_sessions_early,
params.quic_connection_options),
spdy_session_pool_(params.host_resolver,
params.ssl_config_service,
« no previous file with comments | « net/http/http_network_session.h ('k') | net/quic/quic_chromium_client_session.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698