1 // 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.
5 #include "net/quic/quic_connection_stats.h"
11 QuicConnectionStats::QuicConnectionStats()
19 stream_bytes_received(0),
20 bytes_retransmitted(0),
21 packets_retransmitted(0),
22 bytes_spuriously_retransmitted(0),
23 packets_spuriously_retransmitted(0),
25 slowstart_packets_sent(0),
26 slowstart_packets_lost(0),
29 crypto_retransmit_count(0),
30 loss_timeout_count(0),
36 estimated_bandwidth(QuicBandwidth::Zero()),
38 max_sequence_reordering(0),
39 max_time_reordering_us(0),
41 connection_creation_time(QuicTime::Zero()) {
44 QuicConnectionStats::~QuicConnectionStats() {}