| Index: net/quic/quic_connection_stats.cc
|
| diff --git a/net/quic/quic_connection_stats.cc b/net/quic/quic_connection_stats.cc
|
| index bf053866a976c34b114658a88433f2710f8b4f8c..7081d0dfba06865a84030292f62701c1bd542d2f 100644
|
| --- a/net/quic/quic_connection_stats.cc
|
| +++ b/net/quic/quic_connection_stats.cc
|
| @@ -32,7 +32,10 @@ QuicConnectionStats::QuicConnectionStats()
|
| spurious_rto_count(0),
|
| min_rtt_us(0),
|
| srtt_us(0),
|
| + max_packet_size(0),
|
| estimated_bandwidth(0),
|
| + congestion_window(0),
|
| + slow_start_threshold(0),
|
| packets_reordered(0),
|
| max_sequence_reordering(0),
|
| max_time_reordering_us(0),
|
| @@ -71,6 +74,7 @@ ostream& operator<<(ostream& os, const QuicConnectionStats& s) {
|
| << ", max packet size: " << s.max_packet_size
|
| << ", estimated bandwidth: " << s.estimated_bandwidth
|
| << ", congestion window: " << s.congestion_window
|
| + << ", slow start threshold: " << s.slow_start_threshold
|
| << ", tcp_loss_events: " << s.tcp_loss_events
|
| << ", packets reordered: " << s.packets_reordered
|
| << ", max sequence reordering: " << s.max_sequence_reordering
|
|
|