| 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 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 152 // beginning of a connection. | 152 // beginning of a connection. |
| 153 QUIC_FLAG(bool, FLAGS_quic_reloadable_flag_quic_send_max_header_list_size, true) | 153 QUIC_FLAG(bool, FLAGS_quic_reloadable_flag_quic_send_max_header_list_size, true) |
| 154 | 154 |
| 155 // If true, fix quantization of CubicBytes while performing convex increases. | 155 // If true, fix quantization of CubicBytes while performing convex increases. |
| 156 QUIC_FLAG(bool, | 156 QUIC_FLAG(bool, |
| 157 FLAGS_quic_reloadable_flag_quic_fix_cubic_bytes_quantization, | 157 FLAGS_quic_reloadable_flag_quic_fix_cubic_bytes_quantization, |
| 158 false) | 158 false) |
| 159 | 159 |
| 160 // If true, QUIC cubic code will use the event time when adjusting CWND after an | 160 // If true, QUIC cubic code will use the event time when adjusting CWND after an |
| 161 // ACK instead of the clock\'s current approximate time. | 161 // ACK instead of the clock\'s current approximate time. |
| 162 QUIC_FLAG(bool, FLAGS_quic_reloadable_flag_quic_use_event_time, false) | 162 QUIC_FLAG(bool, FLAGS_quic_reloadable_flag_quic_use_event_time, true) |
| 163 | 163 |
| 164 // If true, lazy allocate and early release memeory used in | 164 // If true, lazy allocate and early release memeory used in |
| 165 // QuicStreamSequencerBuffer to buffer incoming data. | 165 // QuicStreamSequencerBuffer to buffer incoming data. |
| 166 QUIC_FLAG( | 166 QUIC_FLAG( |
| 167 bool, | 167 bool, |
| 168 FLAGS_quic_reloadable_flag_quic_reduce_sequencer_buffer_memory_life_time, | 168 FLAGS_quic_reloadable_flag_quic_reduce_sequencer_buffer_memory_life_time, |
| 169 true) | 169 true) |
| 170 | 170 |
| 171 // If true, Makes GFE respect the connection options for initial flow control | 171 // If true, Makes GFE respect the connection options for initial flow control |
| 172 // window larger than 32 KB. | 172 // window larger than 32 KB. |
| (...skipping 10 matching lines...) Expand all Loading... |
| 183 | 183 |
| 184 // Allow quic to properly support proxying 100 Continue responses. | 184 // Allow quic to properly support proxying 100 Continue responses. |
| 185 QUIC_FLAG(bool, FLAGS_quic_restart_flag_quic_supports_100_continue, false) | 185 QUIC_FLAG(bool, FLAGS_quic_restart_flag_quic_supports_100_continue, false) |
| 186 | 186 |
| 187 // If true, enable quic version 38 | 187 // If true, enable quic version 38 |
| 188 QUIC_FLAG(bool, FLAGS_quic_enable_version_38, false) | 188 QUIC_FLAG(bool, FLAGS_quic_enable_version_38, false) |
| 189 | 189 |
| 190 // When true, ensures the session's flow control window is always at least 1.5x | 190 // When true, ensures the session's flow control window is always at least 1.5x |
| 191 // larger than the largest stream flow control window. | 191 // larger than the largest stream flow control window. |
| 192 QUIC_FLAG(bool, FLAGS_quic_reloadable_flag_quic_flow_control_invariant, false) | 192 QUIC_FLAG(bool, FLAGS_quic_reloadable_flag_quic_flow_control_invariant, false) |
| OLD | NEW |