| 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/core/quic_flags.h" | 5 #include "net/quic/core/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 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 // Do not use a QuicAckListener in order to confirm a larger Path MTU. | 86 // Do not use a QuicAckListener in order to confirm a larger Path MTU. |
| 87 bool FLAGS_quic_no_mtu_discovery_ack_listener = true; | 87 bool FLAGS_quic_no_mtu_discovery_ack_listener = true; |
| 88 | 88 |
| 89 // Deprecate QuicPacketCreator::next_packet_number_length_ because it's no | 89 // Deprecate QuicPacketCreator::next_packet_number_length_ because it's no |
| 90 // longer necessary. | 90 // longer necessary. |
| 91 bool FLAGS_quic_simple_packet_number_length = true; | 91 bool FLAGS_quic_simple_packet_number_length = true; |
| 92 | 92 |
| 93 // If true, enables QUIC_VERSION_35. | 93 // If true, enables QUIC_VERSION_35. |
| 94 bool FLAGS_quic_enable_version_35 = true; | 94 bool FLAGS_quic_enable_version_35 = true; |
| 95 | 95 |
| 96 // If true, re-enables QUIC_VERSION_36. |
| 97 bool FLAGS_quic_enable_version_36 = true; |
| 98 |
| 96 // If true, enables QUIC_VERSION_36. | 99 // If true, enables QUIC_VERSION_36. |
| 97 bool FLAGS_quic_enable_version_36 = true; | 100 bool FLAGS_quic_enable_version_36_v2 = true; |
| 98 | 101 |
| 99 // If true, requires support for X509 certificates in QUIC CHLO PDMDs. | 102 // If true, requires support for X509 certificates in QUIC CHLO PDMDs. |
| 100 bool FLAGS_quic_require_x509 = true; | 103 bool FLAGS_quic_require_x509 = true; |
| 101 | 104 |
| 102 // If true, deprecate safeguards for b/26023400. | 105 // If true, deprecate safeguards for b/26023400. |
| 103 bool FLAGS_quic_deprecate_kfixd = false; | 106 bool FLAGS_quic_deprecate_kfixd = false; |
| 104 | 107 |
| 105 // If true, use async codepaths to invoke ProofSource::GetProof. | 108 // If true, use async codepaths to invoke ProofSource::GetProof. |
| 106 bool FLAGS_enable_async_get_proof = false; | 109 bool FLAGS_enable_async_get_proof = false; |
| 107 | 110 |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 150 // If true, use the CHLO packet size, not message size when determining how | 153 // If true, use the CHLO packet size, not message size when determining how |
| 151 // large a REJ can be. | 154 // large a REJ can be. |
| 152 bool FLAGS_quic_use_chlo_packet_size = true; | 155 bool FLAGS_quic_use_chlo_packet_size = true; |
| 153 | 156 |
| 154 // If true, defer creation of new connection till its CHLO arrives. | 157 // If true, defer creation of new connection till its CHLO arrives. |
| 155 bool FLAGS_quic_buffer_packet_till_chlo = true; | 158 bool FLAGS_quic_buffer_packet_till_chlo = true; |
| 156 | 159 |
| 157 // If true, the connection will check whether it is application-limited, and | 160 // If true, the connection will check whether it is application-limited, and |
| 158 // notify the congestion controller about it. | 161 // notify the congestion controller about it. |
| 159 bool FLAGS_quic_enable_app_limited_check = true; | 162 bool FLAGS_quic_enable_app_limited_check = true; |
| OLD | NEW |