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

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

Issue 2859913003: deprecate FLAGS_quic_reloadable_flag_quic_bbr_keep_sending_at_recent_rate in disabled state. (Closed)
Patch Set: Updated patchset dependency Created 3 years, 7 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/core/congestion_control/bbr_sender_test.cc ('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 // 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 168 matching lines...) Expand 10 before | Expand all | Expand 10 after
179 // If true, on server side, 8-byte connection ID in public header is read and 179 // If true, on server side, 8-byte connection ID in public header is read and
180 // written in big endian. 180 // written in big endian.
181 QUIC_FLAG(bool, 181 QUIC_FLAG(bool,
182 FLAGS_quic_restart_flag_quic_big_endian_connection_id_server, 182 FLAGS_quic_restart_flag_quic_big_endian_connection_id_server,
183 false) 183 false)
184 184
185 // Simplify QUIC\'s adaptive time loss detection to measure the necessary 185 // Simplify QUIC\'s adaptive time loss detection to measure the necessary
186 // reordering window for every spurious retransmit. 186 // reordering window for every spurious retransmit.
187 QUIC_FLAG(bool, FLAGS_quic_reloadable_flag_quic_fix_adaptive_time_loss, false) 187 QUIC_FLAG(bool, FLAGS_quic_reloadable_flag_quic_fix_adaptive_time_loss, false)
188 188
189 // In QUIC BBR, keep sending at the max bandwidth observed in the previous 2
190 // RTTs for another SRTT.
191 QUIC_FLAG(bool,
192 FLAGS_quic_reloadable_flag_quic_bbr_keep_sending_at_recent_rate,
193 false)
194
195 // Base CWND on SRTT instead of min_rtt for QUIC BBR. 189 // Base CWND on SRTT instead of min_rtt for QUIC BBR.
196 QUIC_FLAG(bool, FLAGS_quic_reloadable_flag_quic_bbr_base_cwnd_on_srtt, false) 190 QUIC_FLAG(bool, FLAGS_quic_reloadable_flag_quic_bbr_base_cwnd_on_srtt, false)
197 191
198 // If true, enable random padding of size [1, 256] when response body is 192 // If true, enable random padding of size [1, 256] when response body is
199 // compressed for QUIC version >= 38. 193 // compressed for QUIC version >= 38.
200 QUIC_FLAG(bool, FLAGS_quic_reloadable_flag_quic_enable_random_padding, false) 194 QUIC_FLAG(bool, FLAGS_quic_reloadable_flag_quic_enable_random_padding, false)
201 195
202 // Use conservation in PROBE_BW ouside of super-unity gain and immediately 196 // Use conservation in PROBE_BW ouside of super-unity gain and immediately
203 // preceeding cycle. 197 // preceeding cycle.
204 QUIC_FLAG(bool, FLAGS_quic_reloadable_flag_quic_bbr_extra_conservation, false) 198 QUIC_FLAG(bool, FLAGS_quic_reloadable_flag_quic_bbr_extra_conservation, false)
(...skipping 14 matching lines...) Expand all
219 false) 213 false)
220 214
221 // Fix the algorithm used by packet conservation. 215 // Fix the algorithm used by packet conservation.
222 QUIC_FLAG(bool, FLAGS_quic_reloadable_flag_quic_bbr_fix_conservation, false) 216 QUIC_FLAG(bool, FLAGS_quic_reloadable_flag_quic_bbr_fix_conservation, false)
223 217
224 // If enabled, use refactored stream creation methods. 218 // If enabled, use refactored stream creation methods.
225 QUIC_FLAG(bool, FLAGS_quic_reloadable_flag_quic_refactor_stream_creation, false) 219 QUIC_FLAG(bool, FLAGS_quic_reloadable_flag_quic_refactor_stream_creation, false)
226 220
227 // A second take on fixing QUIC BBR packet conservation. 221 // A second take on fixing QUIC BBR packet conservation.
228 QUIC_FLAG(bool, FLAGS_quic_reloadable_flag_quic_bbr_fix_conservation2, false) 222 QUIC_FLAG(bool, FLAGS_quic_reloadable_flag_quic_bbr_fix_conservation2, false)
OLDNEW
« no previous file with comments | « net/quic/core/congestion_control/bbr_sender_test.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698