| 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 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 73 | 73 |
| 74 // If true, re-enables QUIC_VERSION_36. | 74 // If true, re-enables QUIC_VERSION_36. |
| 75 QUIC_FLAG(bool, FLAGS_quic_enable_version_36, true) | 75 QUIC_FLAG(bool, FLAGS_quic_enable_version_36, true) |
| 76 | 76 |
| 77 // If true, enables QUIC_VERSION_36. | 77 // If true, enables QUIC_VERSION_36. |
| 78 QUIC_FLAG(bool, FLAGS_quic_enable_version_36_v2, true) | 78 QUIC_FLAG(bool, FLAGS_quic_enable_version_36_v2, true) |
| 79 | 79 |
| 80 // If true, use async codepaths to invoke ProofSource::GetProof. | 80 // If true, use async codepaths to invoke ProofSource::GetProof. |
| 81 QUIC_FLAG(bool, FLAGS_enable_async_get_proof, false) | 81 QUIC_FLAG(bool, FLAGS_enable_async_get_proof, false) |
| 82 | 82 |
| 83 // If true, QuicAlarm::Update will call a faster UpdateImpl implementation | |
| 84 // instead of canceling and reregistering the alarm. | |
| 85 QUIC_FLAG(bool, FLAGS_quic_change_alarms_efficiently, true) | |
| 86 | |
| 87 // If true, requires handshake confirmations for all QUIC handshakes with | 83 // If true, requires handshake confirmations for all QUIC handshakes with |
| 88 // versions less than 33. | 84 // versions less than 33. |
| 89 QUIC_FLAG(bool, FLAGS_quic_require_handshake_confirmation_pre33, false) | 85 QUIC_FLAG(bool, FLAGS_quic_require_handshake_confirmation_pre33, false) |
| 90 | 86 |
| 91 // If true, fix a bug with which QuicStreamSequencerBuffer can\'t release block | 87 // If true, fix a bug with which QuicStreamSequencerBuffer can\'t release block |
| 92 // memory in time. | 88 // memory in time. |
| 93 QUIC_FLAG(bool, FLAGS_quic_sequencer_buffer_retire_block_in_time, true) | 89 QUIC_FLAG(bool, FLAGS_quic_sequencer_buffer_retire_block_in_time, true) |
| 94 | 90 |
| 95 // Remove obsolete code to force QUIC to go forward secure, now that the server | 91 // Remove obsolete code to force QUIC to go forward secure, now that the server |
| 96 // immediately goes forward secure. | 92 // immediately goes forward secure. |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 157 | 153 |
| 158 // If true, lazy allocate and early release memeory used in | 154 // If true, lazy allocate and early release memeory used in |
| 159 // QuicStreamSequencerBuffer to buffer incoming data. | 155 // QuicStreamSequencerBuffer to buffer incoming data. |
| 160 QUIC_FLAG(bool, FLAGS_quic_reduce_sequencer_buffer_memory_life_time, true) | 156 QUIC_FLAG(bool, FLAGS_quic_reduce_sequencer_buffer_memory_life_time, true) |
| 161 | 157 |
| 162 // If true, allow server address change if it is because of mapped ipv4 address. | 158 // If true, allow server address change if it is because of mapped ipv4 address. |
| 163 QUIC_FLAG(bool, FLAGS_quic_allow_server_address_change_for_mapped_ipv4, true) | 159 QUIC_FLAG(bool, FLAGS_quic_allow_server_address_change_for_mapped_ipv4, true) |
| 164 | 160 |
| 165 // If true, disables QUIC version less than 34. | 161 // If true, disables QUIC version less than 34. |
| 166 QUIC_FLAG(bool, FLAGS_quic_disable_pre_34, false) | 162 QUIC_FLAG(bool, FLAGS_quic_disable_pre_34, false) |
| OLD | NEW |