| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "net/tools/quic/quic_time_wait_list_manager.h" | 5 #include "net/tools/quic/quic_time_wait_list_manager.h" |
| 6 | 6 |
| 7 #include <errno.h> | 7 #include <errno.h> |
| 8 | 8 |
| 9 #include "base/logging.h" | 9 #include "base/logging.h" |
| 10 #include "base/macros.h" |
| 10 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
| 11 #include "base/stl_util.h" | 12 #include "base/stl_util.h" |
| 12 #include "net/base/ip_endpoint.h" | 13 #include "net/base/ip_endpoint.h" |
| 13 #include "net/quic/crypto/crypto_protocol.h" | 14 #include "net/quic/crypto/crypto_protocol.h" |
| 14 #include "net/quic/crypto/quic_decrypter.h" | 15 #include "net/quic/crypto/quic_decrypter.h" |
| 15 #include "net/quic/crypto/quic_encrypter.h" | 16 #include "net/quic/crypto/quic_encrypter.h" |
| 16 #include "net/quic/quic_clock.h" | 17 #include "net/quic/quic_clock.h" |
| 17 #include "net/quic/quic_flags.h" | 18 #include "net/quic/quic_flags.h" |
| 18 #include "net/quic/quic_framer.h" | 19 #include "net/quic/quic_framer.h" |
| 19 #include "net/quic/quic_protocol.h" | 20 #include "net/quic/quic_protocol.h" |
| (...skipping 302 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 322 bool connection_rejected_statelessly) | 323 bool connection_rejected_statelessly) |
| 323 : num_packets(num_packets_), | 324 : num_packets(num_packets_), |
| 324 version(version_), | 325 version(version_), |
| 325 time_added(time_added_), | 326 time_added(time_added_), |
| 326 connection_rejected_statelessly(connection_rejected_statelessly) {} | 327 connection_rejected_statelessly(connection_rejected_statelessly) {} |
| 327 | 328 |
| 328 QuicTimeWaitListManager::ConnectionIdData::~ConnectionIdData() {} | 329 QuicTimeWaitListManager::ConnectionIdData::~ConnectionIdData() {} |
| 329 | 330 |
| 330 } // namespace tools | 331 } // namespace tools |
| 331 } // namespace net | 332 } // namespace net |
| OLD | NEW |