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

Unified Diff: net/http/http_network_session.cc

Issue 2124753005: Implements migration of a QUIC connection to a different destination address if specified by the se… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@write-error
Patch Set: fixing linker error. Created 4 years, 5 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 06651e967542d13ac5d4fbbb8b2516fe49712447..0661daf6bd12f67e6ebcdc0efe9f284ea3c1a8a2 100644
--- a/net/http/http_network_session.cc
+++ b/net/http/http_network_session.cc
@@ -127,6 +127,7 @@ HttpNetworkSession::Params::Params()
quic_disable_preconnect_if_0rtt(false),
quic_migrate_sessions_on_network_change(false),
quic_migrate_sessions_early(false),
+ quic_allow_server_migration(false),
quic_disable_bidirectional_streams(false),
quic_force_hol_blocking(false),
proxy_delegate(NULL),
@@ -187,6 +188,7 @@ HttpNetworkSession::HttpNetworkSession(const Params& params)
params.quic_idle_connection_timeout_seconds,
params.quic_migrate_sessions_on_network_change,
params.quic_migrate_sessions_early,
+ params.quic_allow_server_migration,
params.quic_force_hol_blocking,
params.quic_connection_options,
params.enable_token_binding),
« 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