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 #include "net/quic/quic_flags.h" | 5 #include "net/quic/quic_flags.h" |
6 | 6 |
7 // If true, it will return as soon as an error is detected while validating | 7 // If true, it will return as soon as an error is detected while validating |
8 // CHLO. | 8 // CHLO. |
9 bool FLAGS_use_early_return_when_verifying_chlo = true; | 9 bool FLAGS_use_early_return_when_verifying_chlo = true; |
10 | 10 |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
59 | 59 |
60 // If true, Close the connection instead of writing unencrypted stream data. | 60 // If true, Close the connection instead of writing unencrypted stream data. |
61 bool FLAGS_quic_never_write_unencrypted_data = true; | 61 bool FLAGS_quic_never_write_unencrypted_data = true; |
62 | 62 |
63 // If true, reject any incoming QUIC which does not have the FIXD tag. | 63 // If true, reject any incoming QUIC which does not have the FIXD tag. |
64 bool FLAGS_quic_require_fix = true; | 64 bool FLAGS_quic_require_fix = true; |
65 | 65 |
66 // If true, headers stream will support receiving PUSH_PROMISE frames. | 66 // If true, headers stream will support receiving PUSH_PROMISE frames. |
67 bool FLAGS_quic_supports_push_promise = true; | 67 bool FLAGS_quic_supports_push_promise = true; |
68 | 68 |
69 // If true, make sure new incoming streams correctly cede to higher | |
70 // priority (or batch) streams when doing QUIC writes. | |
71 bool FLAGS_quic_cede_correctly = true; | |
72 | |
73 // Resend 0RTT requests in response to an REJ that re-establishes encryption. | 69 // Resend 0RTT requests in response to an REJ that re-establishes encryption. |
74 bool FLAGS_quic_reply_to_rej = true; | 70 bool FLAGS_quic_reply_to_rej = true; |
75 | 71 |
76 // If true, QUIC connections can do bandwidth resumption with an initial window | 72 // If true, QUIC connections can do bandwidth resumption with an initial window |
77 // of < 10 packets. | 73 // of < 10 packets. |
78 bool FLAGS_quic_no_lower_bw_resumption_limit = true; | 74 bool FLAGS_quic_no_lower_bw_resumption_limit = true; |
79 | 75 |
80 // Limit the ruction of slow start large reduction to 1/2 the current CWND once | 76 // Limit the ruction of slow start large reduction to 1/2 the current CWND once |
81 // the initial flight has been acked. | 77 // the initial flight has been acked. |
82 bool FLAGS_quic_sslr_limit_reduction = true; | 78 bool FLAGS_quic_sslr_limit_reduction = true; |
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
157 | 153 |
158 // Do not use a QuicAckListener in order to confirm a larger Path MTU. | 154 // Do not use a QuicAckListener in order to confirm a larger Path MTU. |
159 bool FLAGS_quic_no_mtu_discovery_ack_listener = false; | 155 bool FLAGS_quic_no_mtu_discovery_ack_listener = false; |
160 | 156 |
161 // Deprecate QuicPacketCreator::next_packet_number_length_ because it's no | 157 // Deprecate QuicPacketCreator::next_packet_number_length_ because it's no |
162 // longer necessary. | 158 // longer necessary. |
163 bool FLAGS_quic_simple_packet_number_length = false; | 159 bool FLAGS_quic_simple_packet_number_length = false; |
164 | 160 |
165 // If true, enables QUIC_VERSION_35. | 161 // If true, enables QUIC_VERSION_35. |
166 bool FLAGS_quic_enable_version_35 = false; | 162 bool FLAGS_quic_enable_version_35 = false; |
OLD | NEW |