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_lost(0),
28 crypto_retransmit_count(0),
29 loss_timeout_count(0),
35 estimated_bandwidth(QuicBandwidth::Zero()),
37 max_sequence_reordering(0),
38 max_time_reordering_us(0),
40 connection_creation_time(QuicTime::Zero()) {
43 QuicConnectionStats::~QuicConnectionStats() {}