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 // When true, the use time based loss detection instead of nack. | 7 // When true, the use time based loss detection instead of nack. |
8 bool FLAGS_quic_use_time_loss_detection = false; | 8 bool FLAGS_quic_use_time_loss_detection = false; |
9 | 9 |
10 // If true, it will return as soon as an error is detected while validating | 10 // If true, it will return as soon as an error is detected while validating |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
58 // measurements will be surfaced via UMA histogram | 58 // measurements will be surfaced via UMA histogram |
59 // Net.QuicSession.HeadersHOLBlockedTime. | 59 // Net.QuicSession.HeadersHOLBlockedTime. |
60 bool FLAGS_quic_measure_headers_hol_blocking_time = true; | 60 bool FLAGS_quic_measure_headers_hol_blocking_time = true; |
61 | 61 |
62 // Disable QUIC's userspace pacing. | 62 // Disable QUIC's userspace pacing. |
63 bool FLAGS_quic_disable_pacing = false; | 63 bool FLAGS_quic_disable_pacing = false; |
64 | 64 |
65 // If true, don't send QUIC packets if the send alarm is set. | 65 // If true, don't send QUIC packets if the send alarm is set. |
66 bool FLAGS_quic_respect_send_alarm2 = true; | 66 bool FLAGS_quic_respect_send_alarm2 = true; |
67 | 67 |
68 // If true, QUIC sessions will write block streams that attempt to write | |
69 // unencrypted data. | |
70 bool FLAGS_quic_block_unencrypted_writes = true; | |
71 | |
72 // If true, Close the connection instead of writing unencrypted stream data. | 68 // If true, Close the connection instead of writing unencrypted stream data. |
73 bool FLAGS_quic_never_write_unencrypted_data = true; | 69 bool FLAGS_quic_never_write_unencrypted_data = true; |
74 | 70 |
75 // If true, clear the FEC group instead of sending it with ENCRYPTION_NONE. | 71 // If true, clear the FEC group instead of sending it with ENCRYPTION_NONE. |
76 // Close the connection if we ever try to serialized unencrypted FEC. | 72 // Close the connection if we ever try to serialized unencrypted FEC. |
77 bool FLAGS_quic_no_unencrypted_fec = true; | 73 bool FLAGS_quic_no_unencrypted_fec = true; |
78 | 74 |
79 // If true, reject any incoming QUIC which does not have the FIXD tag. | 75 // If true, reject any incoming QUIC which does not have the FIXD tag. |
80 bool FLAGS_quic_require_fix = true; | 76 bool FLAGS_quic_require_fix = true; |
81 | 77 |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
120 // Saves the initial subkey secret in QUIC crypto when deriving keys from the | 116 // Saves the initial subkey secret in QUIC crypto when deriving keys from the |
121 // initial premaster secret. | 117 // initial premaster secret. |
122 bool FLAGS_quic_save_initial_subkey_secret = true; | 118 bool FLAGS_quic_save_initial_subkey_secret = true; |
123 | 119 |
124 // If true, the QUIC dispatcher will directly send version negotiation packets | 120 // If true, the QUIC dispatcher will directly send version negotiation packets |
125 // without needing to create a QUIC session first. | 121 // without needing to create a QUIC session first. |
126 bool FLAGS_quic_stateless_version_negotiation = false; | 122 bool FLAGS_quic_stateless_version_negotiation = false; |
127 | 123 |
128 // QUIC Ack Decimation with tolerance for packet reordering. | 124 // QUIC Ack Decimation with tolerance for packet reordering. |
129 bool FLAGS_quic_ack_decimation2 = true; | 125 bool FLAGS_quic_ack_decimation2 = true; |
OLD | NEW |