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 bool FLAGS_quic_allow_oversized_packets_for_test = false; | 7 bool FLAGS_quic_allow_oversized_packets_for_test = false; |
8 | 8 |
9 // When true, the use time based loss detection instead of nack. | 9 // When true, the use time based loss detection instead of nack. |
10 bool FLAGS_quic_use_time_loss_detection = false; | 10 bool FLAGS_quic_use_time_loss_detection = false; |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
61 // If true, an attempt to send an empty data string with no FIN will return | 61 // If true, an attempt to send an empty data string with no FIN will return |
62 // early, and not create a frame. | 62 // early, and not create a frame. |
63 bool FLAGS_quic_empty_data_no_fin_early_return = true; | 63 bool FLAGS_quic_empty_data_no_fin_early_return = true; |
64 | 64 |
65 // If true, if min RTT and/or SRTT have not yet been set then initial RTT is | 65 // If true, if min RTT and/or SRTT have not yet been set then initial RTT is |
66 // used to initialize them in a call to QuicConnection::GetStats. | 66 // used to initialize them in a call to QuicConnection::GetStats. |
67 bool FLAGS_quic_use_initial_rtt_for_stats = true; | 67 bool FLAGS_quic_use_initial_rtt_for_stats = true; |
68 | 68 |
69 // If true, uses the last sent packet for the RTO timer instead of the earliest. | 69 // If true, uses the last sent packet for the RTO timer instead of the earliest. |
70 bool FLAGS_quic_rto_uses_last_sent = true; | 70 bool FLAGS_quic_rto_uses_last_sent = true; |
| 71 |
| 72 // If true, attach QuicAckNotifiers to packets rather than individual stream |
| 73 // frames. |
| 74 bool FLAGS_quic_attach_ack_notifiers_to_packets = true; |
OLD | NEW |