| 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 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 79 | 79 |
| 80 // Only close the connection on the 5th RTO client side when the 5RTO option | 80 // Only close the connection on the 5th RTO client side when the 5RTO option |
| 81 // is enabled. | 81 // is enabled. |
| 82 QUIC_FLAG(bool, FLAGS_quic_reloadable_flag_quic_only_5rto_client_side, false) | 82 QUIC_FLAG(bool, FLAGS_quic_reloadable_flag_quic_only_5rto_client_side, false) |
| 83 | 83 |
| 84 // If true, QUIC server push will enabled by default. | 84 // If true, QUIC server push will enabled by default. |
| 85 QUIC_FLAG(bool, | 85 QUIC_FLAG(bool, |
| 86 FLAGS_quic_reloadable_flag_quic_enable_server_push_by_default, | 86 FLAGS_quic_reloadable_flag_quic_enable_server_push_by_default, |
| 87 true) | 87 true) |
| 88 | 88 |
| 89 // If true, export reject reasons for all rejects, i.e., rejects, | |
| 90 // stateless rejects and cheap stateless rejects. | |
| 91 QUIC_FLAG(bool, | |
| 92 FLAGS_quic_reloadable_flag_quic_export_rej_for_all_rejects, | |
| 93 true) | |
| 94 | |
| 95 // Allow large send deltas to be used as RTT samples. | 89 // Allow large send deltas to be used as RTT samples. |
| 96 QUIC_FLAG(bool, FLAGS_quic_reloadable_flag_quic_allow_large_send_deltas, true) | 90 QUIC_FLAG(bool, FLAGS_quic_reloadable_flag_quic_allow_large_send_deltas, true) |
| 97 | 91 |
| 98 // Engage early retransmit anytime the largest acked is greater than | 92 // Engage early retransmit anytime the largest acked is greater than |
| 99 // or equal to the largest retransmittable packet. | 93 // or equal to the largest retransmittable packet. |
| 100 QUIC_FLAG(bool, | 94 QUIC_FLAG(bool, |
| 101 FLAGS_quic_reloadable_flag_quic_largest_sent_retransmittable, | 95 FLAGS_quic_reloadable_flag_quic_largest_sent_retransmittable, |
| 102 true) | 96 true) |
| 103 | 97 |
| 104 // If true, release QuicCryptoStream\'s read buffer when stream are less | 98 // If true, release QuicCryptoStream\'s read buffer when stream are less |
| (...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 215 QUIC_FLAG(bool, FLAGS_quic_reloadable_flag_quic_fix_beta_last_max, false) | 209 QUIC_FLAG(bool, FLAGS_quic_reloadable_flag_quic_fix_beta_last_max, false) |
| 216 | 210 |
| 217 // If true, enable QUIC v37. | 211 // If true, enable QUIC v37. |
| 218 QUIC_FLAG(bool, FLAGS_quic_reloadable_flag_quic_enable_version_37, false) | 212 QUIC_FLAG(bool, FLAGS_quic_reloadable_flag_quic_enable_version_37, false) |
| 219 | 213 |
| 220 // If true, disables QUIC v34. | 214 // If true, disables QUIC v34. |
| 221 QUIC_FLAG(bool, FLAGS_quic_reloadable_flag_quic_disable_version_34, false) | 215 QUIC_FLAG(bool, FLAGS_quic_reloadable_flag_quic_disable_version_34, false) |
| 222 | 216 |
| 223 // Allow quic to properly support proxying 100 Continue responses. | 217 // Allow quic to properly support proxying 100 Continue responses. |
| 224 QUIC_FLAG(bool, FLAGS_quic_restart_flag_quic_supports_100_continue, false) | 218 QUIC_FLAG(bool, FLAGS_quic_restart_flag_quic_supports_100_continue, false) |
| OLD | NEW |