| 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 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 67 | 67 |
| 68 // If true, use async codepaths to invoke ProofSource::GetProof. | 68 // If true, use async codepaths to invoke ProofSource::GetProof. |
| 69 QUIC_FLAG(bool, FLAGS_quic_reloadable_flag_enable_async_get_proof, true) | 69 QUIC_FLAG(bool, FLAGS_quic_reloadable_flag_enable_async_get_proof, true) |
| 70 | 70 |
| 71 // If true, only open limited number of quic sessions per epoll event. Leave the | 71 // If true, only open limited number of quic sessions per epoll event. Leave the |
| 72 // rest to next event. | 72 // rest to next event. |
| 73 QUIC_FLAG(bool, | 73 QUIC_FLAG(bool, |
| 74 FLAGS_quic_reloadable_flag_quic_limit_num_new_sessions_per_epoll_loop, | 74 FLAGS_quic_reloadable_flag_quic_limit_num_new_sessions_per_epoll_loop, |
| 75 true) | 75 true) |
| 76 | 76 |
| 77 // Only close the connection on the 5th RTO client side when the 5RTO option | |
| 78 // is enabled. | |
| 79 QUIC_FLAG(bool, FLAGS_quic_reloadable_flag_quic_only_5rto_client_side, false) | |
| 80 | |
| 81 // If true, QUIC server push will enabled by default. | 77 // If true, QUIC server push will enabled by default. |
| 82 QUIC_FLAG(bool, | 78 QUIC_FLAG(bool, |
| 83 FLAGS_quic_reloadable_flag_quic_enable_server_push_by_default, | 79 FLAGS_quic_reloadable_flag_quic_enable_server_push_by_default, |
| 84 true) | 80 true) |
| 85 | 81 |
| 86 // Allow large send deltas to be used as RTT samples. | 82 // Allow large send deltas to be used as RTT samples. |
| 87 QUIC_FLAG(bool, FLAGS_quic_reloadable_flag_quic_allow_large_send_deltas, true) | 83 QUIC_FLAG(bool, FLAGS_quic_reloadable_flag_quic_allow_large_send_deltas, true) |
| 88 | 84 |
| 89 // If true, release QuicCryptoStream\'s read buffer when stream are less | 85 // If true, release QuicCryptoStream\'s read buffer when stream are less |
| 90 // frequently used. | 86 // frequently used. |
| (...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 190 | 186 |
| 191 // Allow quic to properly support proxying 100 Continue responses. | 187 // Allow quic to properly support proxying 100 Continue responses. |
| 192 QUIC_FLAG(bool, FLAGS_quic_restart_flag_quic_supports_100_continue, false) | 188 QUIC_FLAG(bool, FLAGS_quic_restart_flag_quic_supports_100_continue, false) |
| 193 | 189 |
| 194 // If true, enable quic version 38 | 190 // If true, enable quic version 38 |
| 195 QUIC_FLAG(bool, FLAGS_quic_enable_version_38, false) | 191 QUIC_FLAG(bool, FLAGS_quic_enable_version_38, false) |
| 196 | 192 |
| 197 // When true, ensures the session's flow control window is always at least 1.5x | 193 // When true, ensures the session's flow control window is always at least 1.5x |
| 198 // larger than the largest stream flow control window. | 194 // larger than the largest stream flow control window. |
| 199 QUIC_FLAG(bool, FLAGS_quic_reloadable_flag_quic_flow_control_invariant, false) | 195 QUIC_FLAG(bool, FLAGS_quic_reloadable_flag_quic_flow_control_invariant, false) |
| OLD | NEW |