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

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

Issue 849123003: Land Recent QUIC Changes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removed extra blank line 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_packet_creator.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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
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;
OLDNEW
« no previous file with comments | « net/quic/quic_flags.h ('k') | net/quic/quic_packet_creator.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698