| 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 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 106 // stateless rejects and cheap stateless rejects. | 106 // stateless rejects and cheap stateless rejects. |
| 107 QUIC_FLAG(bool, FLAGS_quic_export_rej_for_all_rejects, true) | 107 QUIC_FLAG(bool, FLAGS_quic_export_rej_for_all_rejects, true) |
| 108 | 108 |
| 109 // Allow large send deltas to be used as RTT samples. | 109 // Allow large send deltas to be used as RTT samples. |
| 110 QUIC_FLAG(bool, FLAGS_quic_allow_large_send_deltas, true) | 110 QUIC_FLAG(bool, FLAGS_quic_allow_large_send_deltas, true) |
| 111 | 111 |
| 112 // Engage early retransmit anytime the largest acked is greater than | 112 // Engage early retransmit anytime the largest acked is greater than |
| 113 // or equal to the largest retransmittable packet. | 113 // or equal to the largest retransmittable packet. |
| 114 QUIC_FLAG(bool, FLAGS_quic_largest_sent_retransmittable, true) | 114 QUIC_FLAG(bool, FLAGS_quic_largest_sent_retransmittable, true) |
| 115 | 115 |
| 116 // If true, close connection when sequencer buffer enter into unexpected state. | |
| 117 QUIC_FLAG(bool, FLAGS_quic_stream_sequencer_buffer_debug, true) | |
| 118 | |
| 119 // If true, release QuicCryptoStream\'s read buffer when stream are less | 116 // If true, release QuicCryptoStream\'s read buffer when stream are less |
| 120 // frequently used. | 117 // frequently used. |
| 121 QUIC_FLAG(bool, FLAGS_quic_release_crypto_stream_buffer, false) | 118 QUIC_FLAG(bool, FLAGS_quic_release_crypto_stream_buffer, false) |
| 122 | 119 |
| 123 // Use a more conservative backoff of 2x instead of 1.5x for handshake | 120 // Use a more conservative backoff of 2x instead of 1.5x for handshake |
| 124 // retransmissions, as well as a larger minimum. | 121 // retransmissions, as well as a larger minimum. |
| 125 QUIC_FLAG(bool, FLAGS_quic_conservative_handshake_retransmits, true) | 122 QUIC_FLAG(bool, FLAGS_quic_conservative_handshake_retransmits, true) |
| 126 | 123 |
| 127 // If true, buffer packets while parsing public headers instead of parsing down | 124 // If true, buffer packets while parsing public headers instead of parsing down |
| 128 // if CHLO is already buffered. | 125 // if CHLO is already buffered. |
| (...skipping 15 matching lines...) Expand all Loading... |
| 144 // If true, rejected packet number is removed from public reset packet. | 141 // If true, rejected packet number is removed from public reset packet. |
| 145 QUIC_FLAG(bool, FLAGS_quic_remove_packet_number_from_public_reset, false) | 142 QUIC_FLAG(bool, FLAGS_quic_remove_packet_number_from_public_reset, false) |
| 146 | 143 |
| 147 // If true, will send QUIC_PUSH_STREAM_TIMED_OUT when push stream is unclaimed | 144 // If true, will send QUIC_PUSH_STREAM_TIMED_OUT when push stream is unclaimed |
| 148 // and times out. | 145 // and times out. |
| 149 QUIC_FLAG(bool, FLAGS_quic_send_push_stream_timed_out_error, true) | 146 QUIC_FLAG(bool, FLAGS_quic_send_push_stream_timed_out_error, true) |
| 150 | 147 |
| 151 // If true, enable bugfix for FHOL experiment (fin-only | 148 // If true, enable bugfix for FHOL experiment (fin-only |
| 152 // WritevStreamData). | 149 // WritevStreamData). |
| 153 QUIC_FLAG(bool, FLAGS_quic_bugfix_fhol_writev_fin_only_v2, true) | 150 QUIC_FLAG(bool, FLAGS_quic_bugfix_fhol_writev_fin_only_v2, true) |
| OLD | NEW |