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

Side by Side Diff: net/quic/core/quic_flags_list.h

Issue 2812003002: Deprecate FLAGS_quic_reloadable_flag_quic_flow_control_invariant. (Closed)
Patch Set: Created 3 years, 8 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 | « no previous file | net/quic/core/quic_flow_controller.h » ('j') | 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 // This file intentionally does not have header guards, it's included 5 // This file intentionally does not have header guards, it's included
6 // inside a macro to generate values. 6 // inside a macro to generate values.
7 7
8 // This file contains the list of QUIC protocol flags. 8 // This file contains the list of QUIC protocol flags.
9 9
10 // If true, QUIC BBR congestion control may be enabled via Finch and/or via QUIC 10 // If true, QUIC BBR congestion control may be enabled via Finch and/or via QUIC
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after
125 125
126 // If true, fix Cubic\'s use of kBetaLastMax for n-connection emulation. 126 // If true, fix Cubic\'s use of kBetaLastMax for n-connection emulation.
127 QUIC_FLAG(bool, FLAGS_quic_reloadable_flag_quic_fix_beta_last_max, false) 127 QUIC_FLAG(bool, FLAGS_quic_reloadable_flag_quic_fix_beta_last_max, false)
128 128
129 // If true, enable QUIC v37. 129 // If true, enable QUIC v37.
130 QUIC_FLAG(bool, FLAGS_quic_reloadable_flag_quic_enable_version_37, true) 130 QUIC_FLAG(bool, FLAGS_quic_reloadable_flag_quic_enable_version_37, true)
131 131
132 // If true, disables QUIC v34. 132 // If true, disables QUIC v34.
133 QUIC_FLAG(bool, FLAGS_quic_reloadable_flag_quic_disable_version_34, true) 133 QUIC_FLAG(bool, FLAGS_quic_reloadable_flag_quic_disable_version_34, true)
134 134
135 // When true, ensures the session's flow control window is always at least 1.5x
136 // larger than the largest stream flow control window.
137 QUIC_FLAG(bool, FLAGS_quic_reloadable_flag_quic_flow_control_invariant, true)
138
139 // If greater than zero, mean RTT variation is multiplied by the specified 135 // If greater than zero, mean RTT variation is multiplied by the specified
140 // factor and added to the congestion window limit. 136 // factor and added to the congestion window limit.
141 QUIC_FLAG(double, FLAGS_quic_bbr_rtt_variation_weight, 0.0f) 137 QUIC_FLAG(double, FLAGS_quic_bbr_rtt_variation_weight, 0.0f)
142 138
143 // Congestion window gain for QUIC BBR during PROBE_BW phase. 139 // Congestion window gain for QUIC BBR during PROBE_BW phase.
144 QUIC_FLAG(double, FLAGS_quic_bbr_cwnd_gain, 2.0f) 140 QUIC_FLAG(double, FLAGS_quic_bbr_cwnd_gain, 2.0f)
145 141
146 // If true, bidi streaming is always enabled in QUIC. 142 // If true, bidi streaming is always enabled in QUIC.
147 QUIC_FLAG(bool, 143 QUIC_FLAG(bool,
148 FLAGS_quic_reloadable_flag_quic_always_enable_bidi_streaming, 144 FLAGS_quic_reloadable_flag_quic_always_enable_bidi_streaming,
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
212 208
213 // If true, on server side, 8-byte connection ID in public header is read and 209 // If true, on server side, 8-byte connection ID in public header is read and
214 // written in big endian. 210 // written in big endian.
215 QUIC_FLAG(bool, 211 QUIC_FLAG(bool,
216 FLAGS_quic_restart_flag_quic_big_endian_connection_id_server, 212 FLAGS_quic_restart_flag_quic_big_endian_connection_id_server,
217 false) 213 false)
218 214
219 // Simplify QUIC\'s adaptive time loss detection to measure the necessary 215 // Simplify QUIC\'s adaptive time loss detection to measure the necessary
220 // reordering window for every spurious retransmit. 216 // reordering window for every spurious retransmit.
221 QUIC_FLAG(bool, FLAGS_quic_reloadable_flag_quic_fix_adaptive_time_loss, false) 217 QUIC_FLAG(bool, FLAGS_quic_reloadable_flag_quic_fix_adaptive_time_loss, false)
OLDNEW
« no previous file with comments | « no previous file | net/quic/core/quic_flow_controller.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698