| 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, it will return as soon as an error is detected while validating | 10 // If true, it will return as soon as an error is detected while validating |
| (...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 88 | 88 |
| 89 // If true, re-enables QUIC_VERSION_36. | 89 // If true, re-enables QUIC_VERSION_36. |
| 90 QUIC_FLAG(bool, FLAGS_quic_enable_version_36, true) | 90 QUIC_FLAG(bool, FLAGS_quic_enable_version_36, true) |
| 91 | 91 |
| 92 // If true, enables QUIC_VERSION_36. | 92 // If true, enables QUIC_VERSION_36. |
| 93 QUIC_FLAG(bool, FLAGS_quic_enable_version_36_v2, false) | 93 QUIC_FLAG(bool, FLAGS_quic_enable_version_36_v2, false) |
| 94 | 94 |
| 95 // If true, use async codepaths to invoke ProofSource::GetProof. | 95 // If true, use async codepaths to invoke ProofSource::GetProof. |
| 96 QUIC_FLAG(bool, FLAGS_enable_async_get_proof, false) | 96 QUIC_FLAG(bool, FLAGS_enable_async_get_proof, false) |
| 97 | 97 |
| 98 // If true, neuter null encrypted packets before sending the next handshake | |
| 99 // message. | |
| 100 QUIC_FLAG(bool, FLAGS_quic_neuter_unencrypted_when_sending, true) | |
| 101 | |
| 102 // If true, QuicAlarm::Update will call a faster UpdateImpl implementation | 98 // If true, QuicAlarm::Update will call a faster UpdateImpl implementation |
| 103 // instead of canceling and reregistering the alarm. | 99 // instead of canceling and reregistering the alarm. |
| 104 QUIC_FLAG(bool, FLAGS_quic_change_alarms_efficiently, true) | 100 QUIC_FLAG(bool, FLAGS_quic_change_alarms_efficiently, true) |
| 105 | 101 |
| 106 // If true, requires handshake confirmations for all QUIC handshakes with | 102 // If true, requires handshake confirmations for all QUIC handshakes with |
| 107 // versions less than 33. | 103 // versions less than 33. |
| 108 QUIC_FLAG(bool, FLAGS_quic_require_handshake_confirmation_pre33, false) | 104 QUIC_FLAG(bool, FLAGS_quic_require_handshake_confirmation_pre33, false) |
| 109 | 105 |
| 110 // If true, fix a bug with which QuicStreamSequencerBuffer can\'t release block | 106 // If true, fix a bug with which QuicStreamSequencerBuffer can\'t release block |
| 111 // memory in time. | 107 // memory in time. |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 161 // message too long (EMSGSIZE) write error. | 157 // message too long (EMSGSIZE) write error. |
| 162 QUIC_FLAG(bool, FLAGS_quic_do_not_send_ack_on_emsgsize, true) | 158 QUIC_FLAG(bool, FLAGS_quic_do_not_send_ack_on_emsgsize, true) |
| 163 | 159 |
| 164 // If true, postpone multipath flag validation to ProcessValidatedPacket. | 160 // If true, postpone multipath flag validation to ProcessValidatedPacket. |
| 165 QUIC_FLAG(bool, FLAGS_quic_postpone_multipath_flag_validation, true) | 161 QUIC_FLAG(bool, FLAGS_quic_postpone_multipath_flag_validation, true) |
| 166 | 162 |
| 167 // If true, set a QUIC connection's last_sent_for_timeout_ to the send time of | 163 // If true, set a QUIC connection's last_sent_for_timeout_ to the send time of |
| 168 // the first packet sent after receiving a packet, even if the sent packet is | 164 // the first packet sent after receiving a packet, even if the sent packet is |
| 169 // a retransmission | 165 // a retransmission |
| 170 QUIC_FLAG(bool, FLAGS_quic_better_last_send_for_timeout, true) | 166 QUIC_FLAG(bool, FLAGS_quic_better_last_send_for_timeout, true) |
| OLD | NEW |