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 #ifndef NET_TOOLS_QUIC_TEST_TOOLS_QUIC_TEST_CLIENT_H_ | 5 #ifndef NET_TOOLS_QUIC_TEST_TOOLS_QUIC_TEST_CLIENT_H_ |
6 #define NET_TOOLS_QUIC_TEST_TOOLS_QUIC_TEST_CLIENT_H_ | 6 #define NET_TOOLS_QUIC_TEST_TOOLS_QUIC_TEST_CLIENT_H_ |
7 | 7 |
8 #include <stddef.h> | 8 #include <stddef.h> |
9 #include <stdint.h> | 9 #include <stdint.h> |
10 | 10 |
11 #include <cstdint> | 11 #include <cstdint> |
12 #include <memory> | 12 #include <memory> |
13 #include <string> | 13 #include <string> |
14 | 14 |
15 #include "base/macros.h" | 15 #include "base/macros.h" |
16 #include "net/base/ip_address.h" | 16 #include "net/base/ip_address.h" |
17 #include "net/base/ip_endpoint.h" | 17 #include "net/base/ip_endpoint.h" |
18 #include "net/quic/proto/cached_network_parameters.pb.h" | 18 #include "net/quic/core/proto/cached_network_parameters.pb.h" |
19 #include "net/quic/quic_framer.h" | 19 #include "net/quic/core/quic_framer.h" |
20 #include "net/quic/quic_packet_creator.h" | 20 #include "net/quic/core/quic_packet_creator.h" |
21 #include "net/quic/quic_protocol.h" | 21 #include "net/quic/core/quic_protocol.h" |
22 #include "net/tools/balsa/balsa_frame.h" | 22 #include "net/tools/balsa/balsa_frame.h" |
23 #include "net/tools/epoll_server/epoll_server.h" | 23 #include "net/tools/epoll_server/epoll_server.h" |
24 #include "net/tools/quic/quic_client.h" | 24 #include "net/tools/quic/quic_client.h" |
25 #include "net/tools/quic/test_tools/simple_client.h" | 25 #include "net/tools/quic/test_tools/simple_client.h" |
26 | 26 |
27 using base::StringPiece; | 27 using base::StringPiece; |
28 | 28 |
29 namespace net { | 29 namespace net { |
30 | 30 |
31 class ProofVerifier; | 31 class ProofVerifier; |
(...skipping 272 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
304 std::string override_sni_; | 304 std::string override_sni_; |
305 | 305 |
306 DISALLOW_COPY_AND_ASSIGN(QuicTestClient); | 306 DISALLOW_COPY_AND_ASSIGN(QuicTestClient); |
307 }; | 307 }; |
308 | 308 |
309 } // namespace test | 309 } // namespace test |
310 | 310 |
311 } // namespace net | 311 } // namespace net |
312 | 312 |
313 #endif // NET_TOOLS_QUIC_TEST_TOOLS_QUIC_TEST_CLIENT_H_ | 313 #endif // NET_TOOLS_QUIC_TEST_TOOLS_QUIC_TEST_CLIENT_H_ |
OLD | NEW |