| 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 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 // flags. | 72 // flags. |
| 73 bool FLAGS_quic_use_old_public_reset_packets = true; | 73 bool FLAGS_quic_use_old_public_reset_packets = true; |
| 74 | 74 |
| 75 // Adds a RATE connection option to do rate based sending. | 75 // Adds a RATE connection option to do rate based sending. |
| 76 bool FLAGS_quic_rate_based_sending = true; | 76 bool FLAGS_quic_rate_based_sending = true; |
| 77 | 77 |
| 78 // If true, QUIC will use cheap stateless rejects without creating a full | 78 // If true, QUIC will use cheap stateless rejects without creating a full |
| 79 // connection. | 79 // connection. |
| 80 bool FLAGS_quic_use_cheap_stateless_rejects = false; | 80 bool FLAGS_quic_use_cheap_stateless_rejects = false; |
| 81 | 81 |
| 82 // If true, treat timestamps from SO_TIMESTAMPING as QuicWallTimes rather | |
| 83 // than QuicTimes. | |
| 84 bool FLAGS_quic_socket_walltimestamps = true; | |
| 85 | |
| 86 // If true, QUIC respect HTTP2 SETTINGS frame rather than always close the | 82 // If true, QUIC respect HTTP2 SETTINGS frame rather than always close the |
| 87 // connection. | 83 // connection. |
| 88 bool FLAGS_quic_respect_http2_settings_frame = true; | 84 bool FLAGS_quic_respect_http2_settings_frame = true; |
| 89 | 85 |
| 90 // 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. |
| 91 bool FLAGS_quic_no_mtu_discovery_ack_listener = true; | 87 bool FLAGS_quic_no_mtu_discovery_ack_listener = true; |
| 92 | 88 |
| 93 // Deprecate QuicPacketCreator::next_packet_number_length_ because it's no | 89 // Deprecate QuicPacketCreator::next_packet_number_length_ because it's no |
| 94 // longer necessary. | 90 // longer necessary. |
| 95 bool FLAGS_quic_simple_packet_number_length = true; | 91 bool FLAGS_quic_simple_packet_number_length = true; |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 143 // have been written and a FIN has been sent. | 139 // have been written and a FIN has been sent. |
| 144 bool FLAGS_quic_close_stream_after_writing_queued_data = false; | 140 bool FLAGS_quic_close_stream_after_writing_queued_data = false; |
| 145 | 141 |
| 146 // If true, close connection with QUIC_TOO_MANY_FRAME_GAPS error when number of | 142 // If true, close connection with QUIC_TOO_MANY_FRAME_GAPS error when number of |
| 147 // gaps in QuicStreamSequenceBuffer exceeds allowed limit. | 143 // gaps in QuicStreamSequenceBuffer exceeds allowed limit. |
| 148 bool FLAGS_quic_limit_frame_gaps_in_buffer = false; | 144 bool FLAGS_quic_limit_frame_gaps_in_buffer = false; |
| 149 | 145 |
| 150 // If true, QuicSentPacketManager will use inline pacing functionality instead | 146 // If true, QuicSentPacketManager will use inline pacing functionality instead |
| 151 // of wrapping the SendAlgorithm with a PacingSender. | 147 // of wrapping the SendAlgorithm with a PacingSender. |
| 152 bool FLAGS_quic_use_inline_pacing = false; | 148 bool FLAGS_quic_use_inline_pacing = false; |
| OLD | NEW |