| Index: net/quic/quic_connection_stats.cc
|
| diff --git a/net/quic/quic_connection_stats.cc b/net/quic/quic_connection_stats.cc
|
| index a21ae05f0cb052b9bc655714958ad631f195cadc..324ea4225db711250e5a89af613cbf3eae05e3fb 100644
|
| --- a/net/quic/quic_connection_stats.cc
|
| +++ b/net/quic/quic_connection_stats.cc
|
| @@ -26,7 +26,9 @@ QuicConnectionStats::QuicConnectionStats()
|
| tlp_count(0),
|
| rto_count(0),
|
| rtt(0),
|
| - estimated_bandwidth(0) {
|
| + estimated_bandwidth(0),
|
| + cwnd_increase_cubic_mode(0),
|
| + cwnd_increase_reno_mode(0) {
|
| }
|
|
|
| QuicConnectionStats::~QuicConnectionStats() {}
|
| @@ -50,6 +52,10 @@ ostream& operator<<(ostream& os, const QuicConnectionStats& s) {
|
| << ", tlp count: " << s.tlp_count
|
| << ", rtt(us): " << s.rtt
|
| << ", estimated_bandwidth: " << s.estimated_bandwidth
|
| + << ", amount of cwnd increase in TCPCubic, in cubic mode: "
|
| + << s.cwnd_increase_cubic_mode
|
| + << ", amount of cwnd increase in TCPCubic, matched by or in reno mode: "
|
| + << s.cwnd_increase_reno_mode
|
| << "}\n";
|
| return os;
|
| }
|
|
|