blob: 4d5c578c3a63490e93d27c09c42a8068cde1743b [file] [log] [blame]
QUICHE teama6ef0a62019-03-07 20:34:33 -05001// Copyright 2013 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#include "net/third_party/quiche/src/quic/core/quic_connection_stats.h"
6
7namespace quic {
8
9QuicConnectionStats::QuicConnectionStats()
10 : bytes_sent(0),
11 packets_sent(0),
12 stream_bytes_sent(0),
13 packets_discarded(0),
14 bytes_received(0),
15 packets_received(0),
16 packets_processed(0),
17 stream_bytes_received(0),
18 bytes_retransmitted(0),
19 packets_retransmitted(0),
20 bytes_spuriously_retransmitted(0),
21 packets_spuriously_retransmitted(0),
22 packets_lost(0),
wub967ba572019-04-01 09:27:52 -070023 slowstart_count(0),
24 slowstart_num_rtts(0),
QUICHE teama6ef0a62019-03-07 20:34:33 -050025 slowstart_packets_sent(0),
wub967ba572019-04-01 09:27:52 -070026 slowstart_bytes_sent(0),
QUICHE teama6ef0a62019-03-07 20:34:33 -050027 slowstart_packets_lost(0),
28 slowstart_bytes_lost(0),
wub967ba572019-04-01 09:27:52 -070029 slowstart_duration(QuicTime::Delta::Zero()),
30 slowstart_start_time(QuicTime::Zero()),
QUICHE teama6ef0a62019-03-07 20:34:33 -050031 packets_dropped(0),
32 crypto_retransmit_count(0),
33 loss_timeout_count(0),
34 tlp_count(0),
35 rto_count(0),
36 min_rtt_us(0),
37 srtt_us(0),
38 max_packet_size(0),
39 max_received_packet_size(0),
40 estimated_bandwidth(QuicBandwidth::Zero()),
41 packets_reordered(0),
42 max_sequence_reordering(0),
43 max_time_reordering_us(0),
44 tcp_loss_events(0),
45 connection_creation_time(QuicTime::Zero()),
46 blocked_frames_received(0),
47 blocked_frames_sent(0),
48 num_connectivity_probing_received(0) {}
49
50QuicConnectionStats::QuicConnectionStats(const QuicConnectionStats& other) =
51 default;
52
53QuicConnectionStats::~QuicConnectionStats() {}
54
55std::ostream& operator<<(std::ostream& os, const QuicConnectionStats& s) {
56 os << "{ bytes_sent: " << s.bytes_sent;
57 os << " packets_sent: " << s.packets_sent;
58 os << " stream_bytes_sent: " << s.stream_bytes_sent;
59 os << " packets_discarded: " << s.packets_discarded;
60 os << " bytes_received: " << s.bytes_received;
61 os << " packets_received: " << s.packets_received;
62 os << " packets_processed: " << s.packets_processed;
63 os << " stream_bytes_received: " << s.stream_bytes_received;
64 os << " bytes_retransmitted: " << s.bytes_retransmitted;
65 os << " packets_retransmitted: " << s.packets_retransmitted;
66 os << " bytes_spuriously_retransmitted: " << s.bytes_spuriously_retransmitted;
67 os << " packets_spuriously_retransmitted: "
68 << s.packets_spuriously_retransmitted;
69 os << " packets_lost: " << s.packets_lost;
70 os << " slowstart_packets_sent: " << s.slowstart_packets_sent;
71 os << " slowstart_packets_lost: " << s.slowstart_packets_lost;
72 os << " slowstart_bytes_lost: " << s.slowstart_bytes_lost;
73 os << " packets_dropped: " << s.packets_dropped;
74 os << " crypto_retransmit_count: " << s.crypto_retransmit_count;
75 os << " loss_timeout_count: " << s.loss_timeout_count;
76 os << " tlp_count: " << s.tlp_count;
77 os << " rto_count: " << s.rto_count;
78 os << " min_rtt_us: " << s.min_rtt_us;
79 os << " srtt_us: " << s.srtt_us;
80 os << " max_packet_size: " << s.max_packet_size;
81 os << " max_received_packet_size: " << s.max_received_packet_size;
82 os << " estimated_bandwidth: " << s.estimated_bandwidth;
83 os << " packets_reordered: " << s.packets_reordered;
84 os << " max_sequence_reordering: " << s.max_sequence_reordering;
85 os << " max_time_reordering_us: " << s.max_time_reordering_us;
86 os << " tcp_loss_events: " << s.tcp_loss_events;
87 os << " connection_creation_time: "
88 << s.connection_creation_time.ToDebuggingValue();
89 os << " blocked_frames_received: " << s.blocked_frames_received;
90 os << " blocked_frames_sent: " << s.blocked_frames_sent;
91 os << " num_connectivity_probing_received: "
92 << s.num_connectivity_probing_received << " }";
93
94 return os;
95}
96
97} // namespace quic