i2pd/libi2pd_client/HTTPProxy.h

22 lines
541 B
C
Raw Normal View History

2014-03-18 02:31:29 +04:00
#ifndef HTTP_PROXY_H__
#define HTTP_PROXY_H__
namespace i2p {
namespace proxy {
class HTTPProxy: public i2p::client::TCPIPAcceptor
2014-03-18 02:31:29 +04:00
{
public:
HTTPProxy(const std::string& address, int port, std::shared_ptr<i2p::client::ClientDestination> localDestination = nullptr);
~HTTPProxy() {};
2015-01-08 03:35:42 +03:00
protected:
// Implements TCPIPAcceptor
std::shared_ptr<i2p::client::I2PServiceHandler> CreateHandler(std::shared_ptr<boost::asio::ip::tcp::socket> socket);
2015-01-08 03:35:42 +03:00
const char* GetName() { return "HTTP Proxy"; }
};
} // http
} // i2p
2014-03-18 02:31:29 +04:00
#endif