| 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 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 127 QUIC_FLAG(bool, FLAGS_quic_limit_uncompressed_headers, false) | 127 QUIC_FLAG(bool, FLAGS_quic_limit_uncompressed_headers, false) |
| 128 | 128 |
| 129 // If true, release headers stream\'s sequencer buffer when there is no active | 129 // If true, release headers stream\'s sequencer buffer when there is no active |
| 130 // stream. | 130 // stream. |
| 131 QUIC_FLAG(bool, FLAGS_quic_headers_stream_release_sequencer_buffer, false) | 131 QUIC_FLAG(bool, FLAGS_quic_headers_stream_release_sequencer_buffer, false) |
| 132 | 132 |
| 133 // Default enable QUIC's Cubic in bytes implementation instead of | 133 // Default enable QUIC's Cubic in bytes implementation instead of |
| 134 // Cubic in packets. | 134 // Cubic in packets. |
| 135 QUIC_FLAG(bool, FLAGS_quic_default_enable_cubic_bytes, true) | 135 QUIC_FLAG(bool, FLAGS_quic_default_enable_cubic_bytes, true) |
| 136 | 136 |
| 137 // If enabled, fix double call of | |
| 138 // InsertLocallyClosedStreamsHighestOffset in ResetPromised. | |
| 139 QUIC_FLAG(bool, FLAGS_quic_bugfix_reset_promised, true) | |
| 140 | |
| 141 // Set the retransmission alarm only when there are unacked | 137 // Set the retransmission alarm only when there are unacked |
| 142 // retransmittable packets. | 138 // retransmittable packets. |
| 143 QUIC_FLAG(bool, FLAGS_quic_more_conservative_retransmission_alarm, true) | 139 QUIC_FLAG(bool, FLAGS_quic_more_conservative_retransmission_alarm, true) |
| 144 | 140 |
| 145 // Enable QUIC force HOL blocking experiment. | 141 // Enable QUIC force HOL blocking experiment. |
| 146 QUIC_FLAG(bool, FLAGS_quic_enable_force_hol_blocking, true) | 142 QUIC_FLAG(bool, FLAGS_quic_enable_force_hol_blocking, true) |
| 147 | 143 |
| 148 // If true, allows packets to be buffered in anticipation of a future CHLO, and | 144 // If true, allows packets to be buffered in anticipation of a future CHLO, and |
| 149 // allow CHLO packets to be buffered until next iteration of the event loop. | 145 // allow CHLO packets to be buffered until next iteration of the event loop. |
| 150 QUIC_FLAG(bool, FLAGS_quic_allow_chlo_buffering, true) | 146 QUIC_FLAG(bool, FLAGS_quic_allow_chlo_buffering, true) |
| 151 | 147 |
| 152 // If true, fix version manager bug, in which version flag does not really | 148 // If true, fix version manager bug, in which version flag does not really |
| 153 // help. | 149 // help. |
| 154 QUIC_FLAG(bool, FLAGS_quic_fix_version_manager, false) | 150 QUIC_FLAG(bool, FLAGS_quic_fix_version_manager, false) |
| 155 | 151 |
| 156 // Add a new client connection options field to QuicOptions which is only used | 152 // Add a new client connection options field to QuicOptions which is only used |
| 157 // to configure client side features, such as congestion control. | 153 // to configure client side features, such as congestion control. |
| 158 QUIC_FLAG(bool, FLAGS_quic_client_connection_options, true) | 154 QUIC_FLAG(bool, FLAGS_quic_client_connection_options, true) |
| 159 | 155 |
| 160 // If true, fix some casts that were causing off-by-one errors in QUIC's cubic | 156 // If true, fix some casts that were causing off-by-one errors in QUIC's cubic |
| 161 // "convex" increases. | 157 // "convex" increases. |
| 162 QUIC_FLAG(bool, FLAGS_quic_fix_cubic_convex_mode, true) | 158 QUIC_FLAG(bool, FLAGS_quic_fix_cubic_convex_mode, true) |
| OLD | NEW |