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

Unified Diff: net/quic/quic_crypto_client_stream.cc

Issue 2175423003: not sending kFIXD in QUIC handshake. behind FLAGS_quic_deprecate_kfixd (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@128058105
Patch Set: 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/quic_crypto_client_stream.cc
diff --git a/net/quic/quic_crypto_client_stream.cc b/net/quic/quic_crypto_client_stream.cc
index 4adb9b1491d944c7d3c4864497df70f29fae6929..88141d3f2ee345a3c6f51416f0447256dbc735d5 100644
--- a/net/quic/quic_crypto_client_stream.cc
+++ b/net/quic/quic_crypto_client_stream.cc
@@ -26,6 +26,9 @@ namespace net {
namespace {
void AppendFixed(CryptoHandshakeMessage* message) {
+ if (FLAGS_quic_deprecate_kfixd) {
+ return;
+ }
vector<QuicTag> tags;
tags.push_back(kFIXD);
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698