OLD | NEW |
1 // Copyright (c) 2015 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2015 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_SERVER_H_ | 5 #ifndef NET_TOOLS_QUIC_TEST_TOOLS_QUIC_TEST_SERVER_H_ |
6 #define NET_TOOLS_QUIC_TEST_TOOLS_QUIC_TEST_SERVER_H_ | 6 #define NET_TOOLS_QUIC_TEST_TOOLS_QUIC_TEST_SERVER_H_ |
7 | 7 |
8 #include <memory> | 8 #include <memory> |
9 #include <string> | 9 #include <string> |
10 | 10 |
11 #include "net/base/ip_endpoint.h" | 11 #include "net/base/ip_endpoint.h" |
12 #include "net/quic/quic_session.h" | 12 #include "net/quic/core/quic_session.h" |
13 #include "net/tools/quic/quic_dispatcher.h" | 13 #include "net/tools/quic/quic_dispatcher.h" |
14 #include "net/tools/quic/quic_server.h" | 14 #include "net/tools/quic/quic_server.h" |
15 #include "net/tools/quic/quic_simple_server_session.h" | 15 #include "net/tools/quic/quic_simple_server_session.h" |
16 #include "net/tools/quic/quic_simple_server_stream.h" | 16 #include "net/tools/quic/quic_simple_server_stream.h" |
17 | 17 |
18 namespace net { | 18 namespace net { |
19 | 19 |
20 | 20 |
21 namespace test { | 21 namespace test { |
22 | 22 |
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
97 // Override to send GoAway. | 97 // Override to send GoAway. |
98 void OnStreamFrame(const QuicStreamFrame& frame) override; | 98 void OnStreamFrame(const QuicStreamFrame& frame) override; |
99 }; | 99 }; |
100 | 100 |
101 } // namespace test | 101 } // namespace test |
102 | 102 |
103 | 103 |
104 } // namespace net | 104 } // namespace net |
105 | 105 |
106 #endif // NET_TOOLS_QUIC_TEST_TOOLS_QUIC_TEST_SERVER_H_ | 106 #endif // NET_TOOLS_QUIC_TEST_TOOLS_QUIC_TEST_SERVER_H_ |
OLD | NEW |