| 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 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 148 // in BBR STARTUP to 1 or 2 RTTs with no bandwidth increase from 3. | 148 // in BBR STARTUP to 1 or 2 RTTs with no bandwidth increase from 3. |
| 149 QUIC_FLAG(bool, FLAGS_quic_reloadable_flag_quic_allow_2_rtt_bbr_startup, false) | 149 QUIC_FLAG(bool, FLAGS_quic_reloadable_flag_quic_allow_2_rtt_bbr_startup, false) |
| 150 | 150 |
| 151 // If true, do not send or process stop waiting frames in QUIC if the NSTP | 151 // If true, do not send or process stop waiting frames in QUIC if the NSTP |
| 152 // connection option is provided. | 152 // connection option is provided. |
| 153 QUIC_FLAG(bool, FLAGS_quic_reloadable_flag_quic_no_stop_waiting_frames, false) | 153 QUIC_FLAG(bool, FLAGS_quic_reloadable_flag_quic_no_stop_waiting_frames, false) |
| 154 | 154 |
| 155 // Allows one self address change. | 155 // Allows one self address change. |
| 156 QUIC_FLAG(bool, FLAGS_quic_reloadable_flag_quic_allow_one_address_change, false) | 156 QUIC_FLAG(bool, FLAGS_quic_reloadable_flag_quic_allow_one_address_change, false) |
| 157 | 157 |
| 158 // If true, no longer send or process the SRBF value in QuicConfig. | |
| 159 QUIC_FLAG(bool, FLAGS_quic_reloadable_flag_quic_no_socket_receive_buffer, false) | |
| 160 | |
| 161 // If true, multipath bit is not used in public flag. | 158 // If true, multipath bit is not used in public flag. |
| 162 QUIC_FLAG(bool, FLAGS_quic_reloadable_flag_quic_remove_multipath_bit, false) | 159 QUIC_FLAG(bool, FLAGS_quic_reloadable_flag_quic_remove_multipath_bit, false) |
| 163 | 160 |
| 164 // Allow QUIC's flow control autotuning to increase the window as | 161 // Allow QUIC's flow control autotuning to increase the window as |
| 165 // quickly for the first adjustment as in subsequent ones. | 162 // quickly for the first adjustment as in subsequent ones. |
| 166 QUIC_FLAG(bool, | 163 QUIC_FLAG(bool, |
| 167 FLAGS_quic_reloadable_flag_quic_flow_control_faster_autotune, | 164 FLAGS_quic_reloadable_flag_quic_flow_control_faster_autotune, |
| 168 true) | 165 true) |
| 169 | 166 |
| 170 // Only consider using the ack spacing in QUIC BBR if 2 packets are acked at | 167 // Only consider using the ack spacing in QUIC BBR if 2 packets are acked at |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 208 | 205 |
| 209 // If true, on server side, 8-byte connection ID in public header is read and | 206 // If true, on server side, 8-byte connection ID in public header is read and |
| 210 // written in big endian. | 207 // written in big endian. |
| 211 QUIC_FLAG(bool, | 208 QUIC_FLAG(bool, |
| 212 FLAGS_quic_restart_flag_quic_big_endian_connection_id_server, | 209 FLAGS_quic_restart_flag_quic_big_endian_connection_id_server, |
| 213 false) | 210 false) |
| 214 | 211 |
| 215 // Simplify QUIC\'s adaptive time loss detection to measure the necessary | 212 // Simplify QUIC\'s adaptive time loss detection to measure the necessary |
| 216 // reordering window for every spurious retransmit. | 213 // reordering window for every spurious retransmit. |
| 217 QUIC_FLAG(bool, FLAGS_quic_reloadable_flag_quic_fix_adaptive_time_loss, false) | 214 QUIC_FLAG(bool, FLAGS_quic_reloadable_flag_quic_fix_adaptive_time_loss, false) |
| OLD | NEW |