Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(85)

Side by Side Diff: net/quic/quic_flags.cc

Issue 841603005: Change QUIC's RTO implementation. Protected by FLAGS_quic_use_new_rto. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@Remove_transmission_stats_83598791
Patch Set: Merge internal change: 83966746 Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « net/quic/quic_flags.h ('k') | net/quic/quic_sent_packet_manager.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 75
76 // If true, the AckNotifierManager is informed about new packets as soon as they 76 // If true, the AckNotifierManager is informed about new packets as soon as they
77 // are serialized. 77 // are serialized.
78 bool FLAGS_quic_ack_notifier_informed_on_serialized = true; 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;
OLDNEW
« no previous file with comments | « net/quic/quic_flags.h ('k') | net/quic/quic_sent_packet_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698