#ifndef HTTP_PROXY_H__ #define HTTP_PROXY_H__ #include #include #include #include #include "I2PService.h" namespace i2p { namespace proxy { class HTTPProxyServer: public i2p::client::TCPIPAcceptor { protected: // Implements TCPIPAcceptor std::shared_ptr CreateHandler(boost::asio::ip::tcp::socket * socket); const char* GetName() { return "HTTP Proxy"; } public: HTTPProxyServer(int port); ~HTTPProxyServer() {} }; typedef HTTPProxyServer HTTPProxy; } } #endif