| 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/quic/test_tools/quic_test_utils.h" | 5 #include "net/quic/test_tools/quic_test_utils.h" |
| 6 | 6 |
| 7 #include <memory> |
| 8 |
| 7 #include "base/sha1.h" | 9 #include "base/sha1.h" |
| 8 #include "base/stl_util.h" | 10 #include "base/stl_util.h" |
| 9 #include "base/strings/string_number_conversions.h" | 11 #include "base/strings/string_number_conversions.h" |
| 10 #include "net/quic/crypto/crypto_framer.h" | 12 #include "net/quic/crypto/crypto_framer.h" |
| 11 #include "net/quic/crypto/crypto_handshake.h" | 13 #include "net/quic/crypto/crypto_handshake.h" |
| 12 #include "net/quic/crypto/crypto_utils.h" | 14 #include "net/quic/crypto/crypto_utils.h" |
| 13 #include "net/quic/crypto/null_encrypter.h" | 15 #include "net/quic/crypto/null_encrypter.h" |
| 14 #include "net/quic/crypto/quic_decrypter.h" | 16 #include "net/quic/crypto/quic_decrypter.h" |
| 15 #include "net/quic/crypto/quic_encrypter.h" | 17 #include "net/quic/crypto/quic_encrypter.h" |
| 16 #include "net/quic/quic_data_writer.h" | 18 #include "net/quic/quic_data_writer.h" |
| (...skipping 788 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 805 // strike register worries that we've just overflowed a uint32_t time. | 807 // strike register worries that we've just overflowed a uint32_t time. |
| 806 (*server_connection)->AdvanceTime(connection_start_time); | 808 (*server_connection)->AdvanceTime(connection_start_time); |
| 807 } | 809 } |
| 808 | 810 |
| 809 QuicStreamId QuicClientDataStreamId(int i) { | 811 QuicStreamId QuicClientDataStreamId(int i) { |
| 810 return kClientDataStreamId1 + 2 * i; | 812 return kClientDataStreamId1 + 2 * i; |
| 811 } | 813 } |
| 812 | 814 |
| 813 } // namespace test | 815 } // namespace test |
| 814 } // namespace net | 816 } // namespace net |
| OLD | NEW |