| 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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 | 71 |
| 72 // If true, attach QuicAckNotifiers to packets rather than individual stream | 72 // If true, attach QuicAckNotifiers to packets rather than individual stream |
| 73 // frames. | 73 // frames. |
| 74 bool FLAGS_quic_attach_ack_notifiers_to_packets = true; | 74 bool FLAGS_quic_attach_ack_notifiers_to_packets = true; |
| 75 |
| 76 // If true, the AckNotifierManager is informed about new packets as soon as they |
| 77 // are serialized. |
| 78 bool FLAGS_quic_ack_notifier_informed_on_serialized = true; |
| 79 |
| 80 // If true, QUIC will use the new RTO that waits until an ack arrives to adjust |
| 81 // the congestion window. |
| 82 bool FLAGS_quic_use_new_rto = true; |
| OLD | NEW |