| 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 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 112 | 112 |
| 113 // If true, GFE sends SETTINGS_MAX_HEADER_LIST_SIZE to the client at the | 113 // If true, GFE sends SETTINGS_MAX_HEADER_LIST_SIZE to the client at the |
| 114 // beginning of a connection. | 114 // beginning of a connection. |
| 115 QUIC_FLAG(bool, FLAGS_quic_reloadable_flag_quic_send_max_header_list_size, true) | 115 QUIC_FLAG(bool, FLAGS_quic_reloadable_flag_quic_send_max_header_list_size, true) |
| 116 | 116 |
| 117 // If true, fix quantization of CubicBytes while performing convex increases. | 117 // If true, fix quantization of CubicBytes while performing convex increases. |
| 118 QUIC_FLAG(bool, | 118 QUIC_FLAG(bool, |
| 119 FLAGS_quic_reloadable_flag_quic_fix_cubic_bytes_quantization, | 119 FLAGS_quic_reloadable_flag_quic_fix_cubic_bytes_quantization, |
| 120 false) | 120 false) |
| 121 | 121 |
| 122 // If true, Makes GFE respect the connection options for initial flow control | |
| 123 // window larger than 32 KB. | |
| 124 QUIC_FLAG(bool, FLAGS_quic_reloadable_flag_quic_large_ifw_options, true) | |
| 125 | |
| 126 // If true, fix Cubic\'s use of kBetaLastMax for n-connection emulation. | 122 // If true, fix Cubic\'s use of kBetaLastMax for n-connection emulation. |
| 127 QUIC_FLAG(bool, FLAGS_quic_reloadable_flag_quic_fix_beta_last_max, false) | 123 QUIC_FLAG(bool, FLAGS_quic_reloadable_flag_quic_fix_beta_last_max, false) |
| 128 | 124 |
| 129 // If true, enable QUIC v37. | 125 // If true, enable QUIC v37. |
| 130 QUIC_FLAG(bool, FLAGS_quic_reloadable_flag_quic_enable_version_37, true) | 126 QUIC_FLAG(bool, FLAGS_quic_reloadable_flag_quic_enable_version_37, true) |
| 131 | 127 |
| 132 // If true, disables QUIC v34. | 128 // If true, disables QUIC v34. |
| 133 QUIC_FLAG(bool, FLAGS_quic_reloadable_flag_quic_disable_version_34, true) | 129 QUIC_FLAG(bool, FLAGS_quic_reloadable_flag_quic_disable_version_34, true) |
| 134 | 130 |
| 135 // If greater than zero, mean RTT variation is multiplied by the specified | 131 // If greater than zero, mean RTT variation is multiplied by the specified |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 214 QUIC_FLAG(bool, FLAGS_quic_reloadable_flag_quic_fix_adaptive_time_loss, false) | 210 QUIC_FLAG(bool, FLAGS_quic_reloadable_flag_quic_fix_adaptive_time_loss, false) |
| 215 | 211 |
| 216 // In QUIC BBR, keep sending at the max bandwidth observed in the previous 2 | 212 // In QUIC BBR, keep sending at the max bandwidth observed in the previous 2 |
| 217 // RTTs for another SRTT. | 213 // RTTs for another SRTT. |
| 218 QUIC_FLAG(bool, | 214 QUIC_FLAG(bool, |
| 219 FLAGS_quic_reloadable_flag_quic_bbr_keep_sending_at_recent_rate, | 215 FLAGS_quic_reloadable_flag_quic_bbr_keep_sending_at_recent_rate, |
| 220 false) | 216 false) |
| 221 | 217 |
| 222 // Base CWND on SRTT instead of min_rtt for QUIC BBR. | 218 // Base CWND on SRTT instead of min_rtt for QUIC BBR. |
| 223 QUIC_FLAG(bool, FLAGS_quic_reloadable_flag_quic_bbr_base_cwnd_on_srtt, false) | 219 QUIC_FLAG(bool, FLAGS_quic_reloadable_flag_quic_bbr_base_cwnd_on_srtt, false) |
| OLD | NEW |