| 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 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 179 // If true, on server side, 8-byte connection ID in public header is read and | 179 // If true, on server side, 8-byte connection ID in public header is read and |
| 180 // written in big endian. | 180 // written in big endian. |
| 181 QUIC_FLAG(bool, | 181 QUIC_FLAG(bool, |
| 182 FLAGS_quic_restart_flag_quic_big_endian_connection_id_server, | 182 FLAGS_quic_restart_flag_quic_big_endian_connection_id_server, |
| 183 false) | 183 false) |
| 184 | 184 |
| 185 // Simplify QUIC\'s adaptive time loss detection to measure the necessary | 185 // Simplify QUIC\'s adaptive time loss detection to measure the necessary |
| 186 // reordering window for every spurious retransmit. | 186 // reordering window for every spurious retransmit. |
| 187 QUIC_FLAG(bool, FLAGS_quic_reloadable_flag_quic_fix_adaptive_time_loss, false) | 187 QUIC_FLAG(bool, FLAGS_quic_reloadable_flag_quic_fix_adaptive_time_loss, false) |
| 188 | 188 |
| 189 // Base CWND on SRTT instead of min_rtt for QUIC BBR. | |
| 190 QUIC_FLAG(bool, FLAGS_quic_reloadable_flag_quic_bbr_base_cwnd_on_srtt, false) | |
| 191 | |
| 192 // If true, enable random padding of size [1, 256] when response body is | 189 // If true, enable random padding of size [1, 256] when response body is |
| 193 // compressed for QUIC version >= 38. | 190 // compressed for QUIC version >= 38. |
| 194 QUIC_FLAG(bool, FLAGS_quic_reloadable_flag_quic_enable_random_padding, false) | 191 QUIC_FLAG(bool, FLAGS_quic_reloadable_flag_quic_enable_random_padding, false) |
| 195 | 192 |
| 196 // Use conservation in PROBE_BW ouside of super-unity gain and immediately | 193 // Use conservation in PROBE_BW ouside of super-unity gain and immediately |
| 197 // preceeding cycle. | 194 // preceeding cycle. |
| 198 QUIC_FLAG(bool, FLAGS_quic_reloadable_flag_quic_bbr_extra_conservation, false) | 195 QUIC_FLAG(bool, FLAGS_quic_reloadable_flag_quic_bbr_extra_conservation, false) |
| 199 | 196 |
| 200 // Increase BBR's inflight limit if recent ack rate is low. | 197 // Increase BBR's inflight limit if recent ack rate is low. |
| 201 QUIC_FLAG(bool, FLAGS_quic_reloadable_flag_quic_bbr_slow_recent_delivery, false) | 198 QUIC_FLAG(bool, FLAGS_quic_reloadable_flag_quic_bbr_slow_recent_delivery, false) |
| (...skipping 21 matching lines...) Expand all Loading... |
| 223 | 220 |
| 224 // If true, GFEs generate and validate source address token using the actual | 221 // If true, GFEs generate and validate source address token using the actual |
| 225 // client IP for proxied session. | 222 // client IP for proxied session. |
| 226 QUIC_FLAG(bool, | 223 QUIC_FLAG(bool, |
| 227 FLAGS_quic_reloadable_flag_quic_use_client_address_for_stk_in_proxy, | 224 FLAGS_quic_reloadable_flag_quic_use_client_address_for_stk_in_proxy, |
| 228 false) | 225 false) |
| 229 | 226 |
| 230 // If true, export a varz mapping QUIC non 0-rtt handshake with corresponding | 227 // If true, export a varz mapping QUIC non 0-rtt handshake with corresponding |
| 231 // frontend service. | 228 // frontend service. |
| 232 QUIC_FLAG(bool, FLAGS_quic_reloadable_flag_quic_account_handshake, false) | 229 QUIC_FLAG(bool, FLAGS_quic_reloadable_flag_quic_account_handshake, false) |
| OLD | NEW |