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