| 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 173 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 184 | 184 |
| 185 // Threshold multiplier below which delivery is considered slow. | 185 // Threshold multiplier below which delivery is considered slow. |
| 186 QUIC_FLAG(double, FLAGS_quic_bbr_slow_delivery_threshold_multiplier, 0.5f) | 186 QUIC_FLAG(double, FLAGS_quic_bbr_slow_delivery_threshold_multiplier, 0.5f) |
| 187 | 187 |
| 188 // If true, update state if trailing headers with a :final-offset key are | 188 // If true, update state if trailing headers with a :final-offset key are |
| 189 // received for a previously closed QUIC stream. | 189 // received for a previously closed QUIC stream. |
| 190 QUIC_FLAG(bool, | 190 QUIC_FLAG(bool, |
| 191 FLAGS_quic_reloadable_flag_quic_final_offset_from_trailers, | 191 FLAGS_quic_reloadable_flag_quic_final_offset_from_trailers, |
| 192 false) | 192 false) |
| 193 | 193 |
| 194 // Fix the algorithm used by packet conservation. | |
| 195 QUIC_FLAG(bool, FLAGS_quic_reloadable_flag_quic_bbr_fix_conservation, false) | |
| 196 | |
| 197 // If enabled, use refactored stream creation methods. | 194 // If enabled, use refactored stream creation methods. |
| 198 QUIC_FLAG(bool, FLAGS_quic_reloadable_flag_quic_refactor_stream_creation, false) | 195 QUIC_FLAG(bool, FLAGS_quic_reloadable_flag_quic_refactor_stream_creation, false) |
| 199 | 196 |
| 200 // A second take on fixing QUIC BBR packet conservation. | 197 // A second take on fixing QUIC BBR packet conservation. |
| 201 QUIC_FLAG(bool, FLAGS_quic_reloadable_flag_quic_bbr_fix_conservation2, false) | 198 QUIC_FLAG(bool, FLAGS_quic_reloadable_flag_quic_bbr_fix_conservation2, false) |
| 202 | 199 |
| 203 // If true, GFEs generate and validate source address token using the actual | 200 // If true, GFEs generate and validate source address token using the actual |
| 204 // client IP for proxied session. | 201 // client IP for proxied session. |
| 205 QUIC_FLAG(bool, | 202 QUIC_FLAG(bool, |
| 206 FLAGS_quic_reloadable_flag_quic_use_client_address_for_stk_in_proxy, | 203 FLAGS_quic_reloadable_flag_quic_use_client_address_for_stk_in_proxy, |
| 207 false) | 204 false) |
| 208 | 205 |
| 209 // If true, export a varz mapping QUIC non 0-rtt handshake with corresponding | 206 // If true, export a varz mapping QUIC non 0-rtt handshake with corresponding |
| 210 // frontend service. | 207 // frontend service. |
| 211 QUIC_FLAG(bool, FLAGS_quic_reloadable_flag_quic_account_handshake, false) | 208 QUIC_FLAG(bool, FLAGS_quic_reloadable_flag_quic_account_handshake, false) |
| 212 | 209 |
| 213 // Allows the 3RTO QUIC connection option to close a QUIC connection after | 210 // Allows the 3RTO QUIC connection option to close a QUIC connection after |
| 214 // 3RTOs if there are no open streams. | 211 // 3RTOs if there are no open streams. |
| 215 QUIC_FLAG(bool, FLAGS_quic_reloadable_flag_quic_enable_3rtos, false) | 212 QUIC_FLAG(bool, FLAGS_quic_reloadable_flag_quic_enable_3rtos, false) |
| 216 | 213 |
| 217 // If true, enable experiment for testing PCC congestion-control. | 214 // If true, enable experiment for testing PCC congestion-control. |
| 218 QUIC_FLAG(bool, FLAGS_quic_reloadable_flag_quic_enable_pcc, false) | 215 QUIC_FLAG(bool, FLAGS_quic_reloadable_flag_quic_enable_pcc, false) |
| 219 | 216 |
| 220 // If true, enable QUIC v40. | 217 // If true, enable QUIC v40. |
| 221 QUIC_FLAG(bool, FLAGS_quic_enable_version_40, false) | 218 QUIC_FLAG(bool, FLAGS_quic_enable_version_40, false) |
| OLD | NEW |