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

Side by Side Diff: net/quic/quic_flags.cc

Issue 1272153006: relnote: Adding FLAGS_require_handshake_confirmation to emergency-disable (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@deprecate_flag_quic_send_fec_packet_only_on_fec_alarm_99599597
Patch Set: Disabled FLAGS_quic_require_handshake_confirmation for ZeroRTT test Created 5 years, 4 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 unified diff | Download patch
« no previous file with comments | « net/quic/quic_flags.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "net/quic/quic_flags.h" 5 #include "net/quic/quic_flags.h"
6 6
7 bool FLAGS_quic_allow_oversized_packets_for_test = false; 7 bool FLAGS_quic_allow_oversized_packets_for_test = false;
8 8
9 // When true, the use time based loss detection instead of nack. 9 // When true, the use time based loss detection instead of nack.
10 bool FLAGS_quic_use_time_loss_detection = false; 10 bool FLAGS_quic_use_time_loss_detection = false;
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 bool FLAGS_spdy_strip_invalid_headers = true; 75 bool FLAGS_spdy_strip_invalid_headers = true;
76 76
77 // If true, instead of enforcing a fixed limit of 200 between the last 77 // If true, instead of enforcing a fixed limit of 200 between the last
78 // client-created stream ID and the next one, calculate the difference based on 78 // client-created stream ID and the next one, calculate the difference based on
79 // get_max_open_streams(). 79 // get_max_open_streams().
80 bool FLAGS_exact_stream_id_delta = true; 80 bool FLAGS_exact_stream_id_delta = true;
81 81
82 // Limits the pacing burst out of quiescence to the current congestion window in 82 // Limits the pacing burst out of quiescence to the current congestion window in
83 // packets. 83 // packets.
84 bool FLAGS_quic_limit_pacing_burst = true; 84 bool FLAGS_quic_limit_pacing_burst = true;
85
86 bool FLAGS_quic_require_handshake_confirmation = true;
OLDNEW
« no previous file with comments | « net/quic/quic_flags.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698