OLD | NEW |
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 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
167 QUIC_FLAG(bool, FLAGS_quic_reloadable_flag_quic_bbr_bandwidth_resumption, false) | 167 QUIC_FLAG(bool, FLAGS_quic_reloadable_flag_quic_bbr_bandwidth_resumption, false) |
168 | 168 |
169 // Add the equivalent number of bytes as 3 TCP TSO segments to QUIC's BBR CWND. | 169 // Add the equivalent number of bytes as 3 TCP TSO segments to QUIC's BBR CWND. |
170 QUIC_FLAG(bool, FLAGS_quic_reloadable_flag_quic_bbr_add_tso_cwnd, false) | 170 QUIC_FLAG(bool, FLAGS_quic_reloadable_flag_quic_bbr_add_tso_cwnd, false) |
171 | 171 |
172 // If true, enable version 38 which supports new PADDING frame and respects NSTP | 172 // If true, enable version 38 which supports new PADDING frame and respects NSTP |
173 // connection option. | 173 // connection option. |
174 QUIC_FLAG(bool, FLAGS_quic_reloadable_flag_quic_enable_version_38, true) | 174 QUIC_FLAG(bool, FLAGS_quic_reloadable_flag_quic_enable_version_38, true) |
175 | 175 |
176 // If true, enable QUIC v39. | 176 // If true, enable QUIC v39. |
177 QUIC_FLAG(bool, FLAGS_quic_enable_version_39, false) | 177 QUIC_FLAG(bool, FLAGS_quic_reloadable_flag_quic_enable_version_39, false) |
178 | 178 |
179 // If true, on client side, 8-byte connection ID in public header is read and | 179 // If true, on client 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_client, | 182 FLAGS_quic_restart_flag_quic_big_endian_connection_id_client, |
183 false) | 183 false) |
184 | 184 |
185 // If true, on server side, 8-byte connection ID in public header is read and | 185 // If true, on server side, 8-byte connection ID in public header is read and |
186 // written in big endian. | 186 // written in big endian. |
187 QUIC_FLAG(bool, | 187 QUIC_FLAG(bool, |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
219 QUIC_FLAG(double, FLAGS_quic_bbr_slow_delivery_threshold_multiplier, 0.5f) | 219 QUIC_FLAG(double, FLAGS_quic_bbr_slow_delivery_threshold_multiplier, 0.5f) |
220 | 220 |
221 // If true, update state if trailing headers with a :final-offset key are | 221 // If true, update state if trailing headers with a :final-offset key are |
222 // received for a previously closed QUIC stream. | 222 // received for a previously closed QUIC stream. |
223 QUIC_FLAG(bool, | 223 QUIC_FLAG(bool, |
224 FLAGS_quic_reloadable_flag_quic_final_offset_from_trailers, | 224 FLAGS_quic_reloadable_flag_quic_final_offset_from_trailers, |
225 false) | 225 false) |
226 | 226 |
227 // Fix the algorithm used by packet conservation. | 227 // Fix the algorithm used by packet conservation. |
228 QUIC_FLAG(bool, FLAGS_quic_reloadable_flag_quic_bbr_fix_conservation, false) | 228 QUIC_FLAG(bool, FLAGS_quic_reloadable_flag_quic_bbr_fix_conservation, false) |
OLD | NEW |