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 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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, QUIC connections can do bandwidth resumption with an initial window | 69 // If true, QUIC connections can do bandwidth resumption with an initial window |
70 // of < 10 packets. | 70 // of < 10 packets. |
71 bool FLAGS_quic_no_lower_bw_resumption_limit = true; | 71 bool FLAGS_quic_no_lower_bw_resumption_limit = true; |
72 | 72 |
73 // Limit the ruction of slow start large reduction to 1/2 the current CWND once | |
74 // the initial flight has been acked. | |
75 bool FLAGS_quic_sslr_limit_reduction = true; | |
76 | |
77 // If true, flow controller may grow the receive window size if necessary. | 73 // If true, flow controller may grow the receive window size if necessary. |
78 bool FLAGS_quic_auto_tune_receive_window = true; | 74 bool FLAGS_quic_auto_tune_receive_window = true; |
79 | 75 |
80 // If true, enable auto tuning by default (server side). | 76 // If true, enable auto tuning by default (server side). |
81 bool FLAGS_quic_enable_autotune_by_default = true; | 77 bool FLAGS_quic_enable_autotune_by_default = true; |
82 | 78 |
83 // Use largest acked in the most recent ack instead of largest acked ever in | 79 // Use largest acked in the most recent ack instead of largest acked ever in |
84 // loss recovery. | 80 // loss recovery. |
85 bool FLAGS_quic_loss_recovery_use_largest_acked = true; | 81 bool FLAGS_quic_loss_recovery_use_largest_acked = true; |
86 | 82 |
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
150 | 146 |
151 // Do not use a QuicAckListener in order to confirm a larger Path MTU. | 147 // Do not use a QuicAckListener in order to confirm a larger Path MTU. |
152 bool FLAGS_quic_no_mtu_discovery_ack_listener = false; | 148 bool FLAGS_quic_no_mtu_discovery_ack_listener = false; |
153 | 149 |
154 // Deprecate QuicPacketCreator::next_packet_number_length_ because it's no | 150 // Deprecate QuicPacketCreator::next_packet_number_length_ because it's no |
155 // longer necessary. | 151 // longer necessary. |
156 bool FLAGS_quic_simple_packet_number_length = false; | 152 bool FLAGS_quic_simple_packet_number_length = false; |
157 | 153 |
158 // If true, enables QUIC_VERSION_35. | 154 // If true, enables QUIC_VERSION_35. |
159 bool FLAGS_quic_enable_version_35 = false; | 155 bool FLAGS_quic_enable_version_35 = false; |
OLD | NEW |