Home | History | Annotate | Download | only in quic
      1 // Copyright (c) 2012 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/quic/quic_stats.h"
      6 
      7 namespace net {
      8 
      9 QuicConnectionStats::QuicConnectionStats()
     10     : bytes_sent(0),
     11       packets_sent(0),
     12       bytes_received(0),
     13       packets_received(0),
     14       bytes_retransmitted(0),
     15       packets_retransmitted(0),
     16       packets_revived(0),
     17       packets_dropped(0),
     18       rto_count(0),
     19       rtt(0),
     20       estimated_bandwidth(0) {
     21 }
     22 
     23 QuicConnectionStats::~QuicConnectionStats() {}
     24 
     25 }  // namespace net
     26