OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_FLIP_SERVER_STREAMER_INTERFACE_ | 5 #ifndef NET_TOOLS_FLIP_SERVER_STREAMER_INTERFACE_ |
6 #define NET_TOOLS_FLIP_SERVER_STREAMER_INTERFACE_ | 6 #define NET_TOOLS_FLIP_SERVER_STREAMER_INTERFACE_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
11 #include "net/tools/flip_server/balsa_headers.h" | 11 #include "net/tools/balsa/balsa_headers.h" |
12 #include "net/tools/flip_server/balsa_visitor_interface.h" | 12 #include "net/tools/balsa/balsa_visitor_interface.h" |
13 #include "net/tools/flip_server/sm_interface.h" | 13 #include "net/tools/flip_server/sm_interface.h" |
14 | 14 |
15 namespace net { | 15 namespace net { |
16 | 16 |
17 class BalsaFrame; | 17 class BalsaFrame; |
18 class FlipAcceptor; | 18 class FlipAcceptor; |
19 class MemCacheIter; | 19 class MemCacheIter; |
20 class SMConnection; | 20 class SMConnection; |
21 class EpollServer; | 21 class EpollServer; |
22 | 22 |
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
123 bool is_request_; | 123 bool is_request_; |
124 BalsaFrame* http_framer_; | 124 BalsaFrame* http_framer_; |
125 BalsaHeaders headers_; | 125 BalsaHeaders headers_; |
126 static std::string forward_ip_header_; | 126 static std::string forward_ip_header_; |
127 }; | 127 }; |
128 | 128 |
129 } // namespace net | 129 } // namespace net |
130 | 130 |
131 #endif // NET_TOOLS_FLIP_SERVER_STREAMER_INTERFACE_ | 131 #endif // NET_TOOLS_FLIP_SERVER_STREAMER_INTERFACE_ |
132 | 132 |
OLD | NEW |