| 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 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 114 bool FLAGS_quic_use_old_public_reset_packets = true; | 114 bool FLAGS_quic_use_old_public_reset_packets = true; |
| 115 | 115 |
| 116 // Ignore the peer's recieve buffer size and instead set max CWND based on the | 116 // Ignore the peer's recieve buffer size and instead set max CWND based on the |
| 117 // amount of data the sender is willing to have in flight. | 117 // amount of data the sender is willing to have in flight. |
| 118 bool FLAGS_quic_ignore_srbf = true; | 118 bool FLAGS_quic_ignore_srbf = true; |
| 119 | 119 |
| 120 // Allow the NPRR connection option which reduces QUIC\'s pacing rate during | 120 // Allow the NPRR connection option which reduces QUIC\'s pacing rate during |
| 121 // recovery instead of PRR. | 121 // recovery instead of PRR. |
| 122 bool FLAGS_quic_allow_noprr = true; | 122 bool FLAGS_quic_allow_noprr = true; |
| 123 | 123 |
| 124 // If true, multi-packet CHLOs are explicitly disallowed. | |
| 125 bool FLAGS_quic_disallow_multi_packet_chlo = true; | |
| 126 | |
| 127 // Use a write path optimized for StreamFrames. | 124 // Use a write path optimized for StreamFrames. |
| 128 bool FLAGS_quic_use_optimized_write_path = true; | 125 bool FLAGS_quic_use_optimized_write_path = true; |
| 129 | 126 |
| 130 // If true, the dispatcher is responsible for generating server designated | 127 // If true, the dispatcher is responsible for generating server designated |
| 131 // connection IDs. | 128 // connection IDs. |
| 132 bool FLAGS_quic_dispatcher_creates_id = true; | 129 bool FLAGS_quic_dispatcher_creates_id = true; |
| 133 | 130 |
| 134 // If true, checks if the CHLO is acceptable as a matter of policy. | 131 // If true, checks if the CHLO is acceptable as a matter of policy. |
| 135 bool FLAGS_quic_enable_chlo_policy = true; | 132 bool FLAGS_quic_enable_chlo_policy = true; |
| 136 | 133 |
| (...skipping 20 matching lines...) Expand all Loading... |
| 157 bool FLAGS_quic_socket_walltimestamps = false; | 154 bool FLAGS_quic_socket_walltimestamps = false; |
| 158 | 155 |
| 159 // If true, default to immediate forward secure once established on the | 156 // If true, default to immediate forward secure once established on the |
| 160 // server side, and the IPFS connection option disables this instead of | 157 // server side, and the IPFS connection option disables this instead of |
| 161 // enabling it. | 158 // enabling it. |
| 162 bool FLAGS_quic_default_immediate_forward_secure = false; | 159 bool FLAGS_quic_default_immediate_forward_secure = false; |
| 163 | 160 |
| 164 // If true, QUIC respect HTTP2 SETTINGS frame rather than always close the | 161 // If true, QUIC respect HTTP2 SETTINGS frame rather than always close the |
| 165 // connection. | 162 // connection. |
| 166 bool FLAGS_quic_respect_http2_settings_frame = false; | 163 bool FLAGS_quic_respect_http2_settings_frame = false; |
| OLD | NEW |