#ifndef HTTP_PROXY_H__ #define HTTP_PROXY_H__ namespace i2p { namespace proxy { class HTTPProxy: public i2p::client::TCPIPAcceptor { public: HTTPProxy(const std::string& address, int port, const std::string & outproxy, std::shared_ptr localDestination); HTTPProxy(const std::string& address, int port, std::shared_ptr localDestination = nullptr) : HTTPProxy(address, port, "", localDestination) {} ; ~HTTPProxy() {}; std::string GetOutproxyURL() const { return m_OutproxyUrl; } protected: // Implements TCPIPAcceptor std::shared_ptr CreateHandler(std::shared_ptr socket); const char* GetName() { return "HTTP Proxy"; } private: std::string m_OutproxyUrl; }; } // http } // i2p #endif