| 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..bc61a77dfd0dfe29fc882404cadb258baec72213 100644
|
| --- a/net/quic/quic_connection_stats.cc
|
| +++ b/net/quic/quic_connection_stats.cc
|
| @@ -41,11 +41,11 @@ QuicConnectionStats::QuicConnectionStats()
|
| connection_creation_time(QuicTime::Zero()) {
|
| }
|
|
|
| -QuicConnectionStats::~QuicConnectionStats() {}
|
| +QuicConnectionStats::~QuicConnectionStats() {
|
| +}
|
|
|
| ostream& operator<<(ostream& os, const QuicConnectionStats& s) {
|
| - os << "{ bytes sent: " << s.bytes_sent
|
| - << ", packets sent:" << s.packets_sent
|
| + os << "{ bytes sent: " << s.bytes_sent << ", packets sent:" << s.packets_sent
|
| << ", stream bytes sent: " << s.stream_bytes_sent
|
| << ", packets discarded: " << s.packets_discarded
|
| << ", bytes received: " << s.bytes_received
|
| @@ -62,10 +62,8 @@ 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
|
| - << ", min_rtt(us): " << s.min_rtt_us
|
| - << ", srtt(us): " << s.srtt_us
|
| + << ", rto count: " << s.rto_count << ", tlp count: " << s.tlp_count
|
| + << ", min_rtt(us): " << s.min_rtt_us << ", srtt(us): " << s.srtt_us
|
| << ", max packet size: " << s.max_packet_size
|
| << ", estimated bandwidth: " << s.estimated_bandwidth
|
| << ", congestion window: " << s.congestion_window
|
| @@ -76,8 +74,7 @@ ostream& operator<<(ostream& os, const QuicConnectionStats& s) {
|
| << ", total amount of cwnd increase in TCPCubic, in congestion avoidance: "
|
| << s.cwnd_increase_congestion_avoidance
|
| << ", amount of cwnd increase in TCPCubic, in cubic mode: "
|
| - << s.cwnd_increase_cubic_mode
|
| - << "}\n";
|
| + << s.cwnd_increase_cubic_mode << "}\n";
|
| return os;
|
| }
|
|
|
|
|