| 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 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 67 | 67 |
| 68 // If true, Close the connection instead of writing unencrypted stream data. | 68 // If true, Close the connection instead of writing unencrypted stream data. |
| 69 bool FLAGS_quic_never_write_unencrypted_data = true; | 69 bool FLAGS_quic_never_write_unencrypted_data = true; |
| 70 | 70 |
| 71 // If true, reject any incoming QUIC which does not have the FIXD tag. | 71 // If true, reject any incoming QUIC which does not have the FIXD tag. |
| 72 bool FLAGS_quic_require_fix = true; | 72 bool FLAGS_quic_require_fix = true; |
| 73 | 73 |
| 74 // If true, headers stream will support receiving PUSH_PROMISE frames. | 74 // If true, headers stream will support receiving PUSH_PROMISE frames. |
| 75 bool FLAGS_quic_supports_push_promise = false; | 75 bool FLAGS_quic_supports_push_promise = false; |
| 76 | 76 |
| 77 // If true, QUIC will support RFC 7539 variants of ChaCha20 Poly1305. | |
| 78 bool FLAGS_quic_use_rfc7539 = true; | |
| 79 | |
| 80 // When turn on, log packet loss into transport connection stats LossEvent. | 77 // When turn on, log packet loss into transport connection stats LossEvent. |
| 81 bool FLAGS_quic_log_loss_event = true; | 78 bool FLAGS_quic_log_loss_event = true; |
| 82 | 79 |
| 83 // If true, for QUIC authenticated encryption algorithms, last 8 bytes | 80 // If true, for QUIC authenticated encryption algorithms, last 8 bytes |
| 84 // of IV comprise packet path id and lower 7 bytes of packet number. | 81 // of IV comprise packet path id and lower 7 bytes of packet number. |
| 85 bool FLAGS_quic_include_path_id_in_iv = true; | 82 bool FLAGS_quic_include_path_id_in_iv = true; |
| 86 | 83 |
| 87 // If true, make sure new incoming streams correctly cede to higher | 84 // If true, make sure new incoming streams correctly cede to higher |
| 88 // priority (or batch) streams when doing QUIC writes. | 85 // priority (or batch) streams when doing QUIC writes. |
| 89 bool FLAGS_quic_cede_correctly = true; | 86 bool FLAGS_quic_cede_correctly = true; |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 130 // Simplify QUIC's write path for inplace encryption now that FEC is gone. | 127 // Simplify QUIC's write path for inplace encryption now that FEC is gone. |
| 131 bool FLAGS_quic_inplace_encryption2 = true; | 128 bool FLAGS_quic_inplace_encryption2 = true; |
| 132 | 129 |
| 133 // If true, SpdyFramer will call OnStreamEnd from SpdyFramerVisitorInterface | 130 // If true, SpdyFramer will call OnStreamEnd from SpdyFramerVisitorInterface |
| 134 // instead of empty-data sentinel calls when the stream is to be ended. | 131 // instead of empty-data sentinel calls when the stream is to be ended. |
| 135 bool FLAGS_spdy_on_stream_end = true; | 132 bool FLAGS_spdy_on_stream_end = true; |
| 136 | 133 |
| 137 // If true, QuicCryptoServerConfig will use cached compressed certificates | 134 // If true, QuicCryptoServerConfig will use cached compressed certificates |
| 138 // if the uncompressed certs to be compressed hits the cache. | 135 // if the uncompressed certs to be compressed hits the cache. |
| 139 bool FLAGS_quic_use_cached_compressed_certs = false; | 136 bool FLAGS_quic_use_cached_compressed_certs = false; |
| OLD | NEW |