| 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 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 129 FLAGS_quic_reloadable_flag_quic_limit_uncompressed_headers, | 129 FLAGS_quic_reloadable_flag_quic_limit_uncompressed_headers, |
| 130 false) | 130 false) |
| 131 | 131 |
| 132 // If true, release headers stream\'s sequencer buffer when there is no active | 132 // If true, release headers stream\'s sequencer buffer when there is no active |
| 133 // stream. | 133 // stream. |
| 134 QUIC_FLAG( | 134 QUIC_FLAG( |
| 135 bool, | 135 bool, |
| 136 FLAGS_quic_reloadable_flag_quic_headers_stream_release_sequencer_buffer, | 136 FLAGS_quic_reloadable_flag_quic_headers_stream_release_sequencer_buffer, |
| 137 true) | 137 true) |
| 138 | 138 |
| 139 // Set the retransmission alarm only when there are unacked | |
| 140 // retransmittable packets. | |
| 141 QUIC_FLAG( | |
| 142 bool, | |
| 143 FLAGS_quic_reloadable_flag_quic_more_conservative_retransmission_alarm, | |
| 144 true) | |
| 145 | |
| 146 // Enable QUIC force HOL blocking experiment. | 139 // Enable QUIC force HOL blocking experiment. |
| 147 QUIC_FLAG(bool, FLAGS_quic_reloadable_flag_quic_enable_force_hol_blocking, true) | 140 QUIC_FLAG(bool, FLAGS_quic_reloadable_flag_quic_enable_force_hol_blocking, true) |
| 148 | 141 |
| 149 // If true, allows packets to be buffered in anticipation of a future CHLO, and | 142 // If true, allows packets to be buffered in anticipation of a future CHLO, and |
| 150 // allow CHLO packets to be buffered until next iteration of the event loop. | 143 // allow CHLO packets to be buffered until next iteration of the event loop. |
| 151 QUIC_FLAG(bool, FLAGS_quic_allow_chlo_buffering, true) | 144 QUIC_FLAG(bool, FLAGS_quic_allow_chlo_buffering, true) |
| 152 | 145 |
| 153 // If true, fix version manager bug, in which version flag does not really | 146 // If true, fix version manager bug, in which version flag does not really |
| 154 // help. | 147 // help. |
| 155 QUIC_FLAG(bool, FLAGS_quic_reloadable_flag_quic_fix_version_manager, true) | 148 QUIC_FLAG(bool, FLAGS_quic_reloadable_flag_quic_fix_version_manager, true) |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 197 | 190 |
| 198 // Allow quic to properly support proxying 100 Continue responses. | 191 // Allow quic to properly support proxying 100 Continue responses. |
| 199 QUIC_FLAG(bool, FLAGS_quic_restart_flag_quic_supports_100_continue, false) | 192 QUIC_FLAG(bool, FLAGS_quic_restart_flag_quic_supports_100_continue, false) |
| 200 | 193 |
| 201 // If true, enable quic version 38 | 194 // If true, enable quic version 38 |
| 202 QUIC_FLAG(bool, FLAGS_quic_enable_version_38, false) | 195 QUIC_FLAG(bool, FLAGS_quic_enable_version_38, false) |
| 203 | 196 |
| 204 // When true, ensures the session's flow control window is always at least 1.5x | 197 // When true, ensures the session's flow control window is always at least 1.5x |
| 205 // larger than the largest stream flow control window. | 198 // larger than the largest stream flow control window. |
| 206 QUIC_FLAG(bool, FLAGS_quic_reloadable_flag_quic_flow_control_invariant, false) | 199 QUIC_FLAG(bool, FLAGS_quic_reloadable_flag_quic_flow_control_invariant, false) |
| OLD | NEW |