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

Unified Diff: net/quic/quic_connection_stats.cc

Issue 352403002: Repair the CWND reduction caused by spurious RTO's in QUIC's congestion (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/quic/quic_connection_stats.h ('k') | net/quic/quic_connection_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/quic_connection_stats.cc
diff --git a/net/quic/quic_connection_stats.cc b/net/quic/quic_connection_stats.cc
index cf235cd751e3fe1e8e48514a5c105bc8ed4a3901..bf053866a976c34b114658a88433f2710f8b4f8c 100644
--- a/net/quic/quic_connection_stats.cc
+++ b/net/quic/quic_connection_stats.cc
@@ -29,6 +29,7 @@ QuicConnectionStats::QuicConnectionStats()
loss_timeout_count(0),
tlp_count(0),
rto_count(0),
+ spurious_rto_count(0),
min_rtt_us(0),
srtt_us(0),
estimated_bandwidth(0),
@@ -62,8 +63,9 @@ ostream& operator<<(ostream& os, const QuicConnectionStats& s) {
<< ", packets revived: " << s.packets_revived
<< ", packets dropped:" << s.packets_dropped
<< ", crypto retransmit count: " << s.crypto_retransmit_count
- << ", rto count: " << s.rto_count
<< ", tlp count: " << s.tlp_count
+ << ", rto count: " << s.rto_count
+ << ", spurious_rto_count:" << s.spurious_rto_count
<< ", min_rtt(us): " << s.min_rtt_us
<< ", srtt(us): " << s.srtt_us
<< ", max packet size: " << s.max_packet_size
« no previous file with comments | « net/quic/quic_connection_stats.h ('k') | net/quic/quic_connection_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698