mirror of https://github.com/PurpleI2P/i2pd.git
I2P: End-to-End encrypted and anonymous Internet
https://i2pd.website/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
541 B
22 lines
541 B
11 years ago
|
#ifndef HTTP_PROXY_H__
|
||
|
#define HTTP_PROXY_H__
|
||
|
|
||
9 years ago
|
namespace i2p {
|
||
|
namespace proxy {
|
||
|
class HTTPProxy: public i2p::client::TCPIPAcceptor
|
||
11 years ago
|
{
|
||
10 years ago
|
public:
|
||
|
|
||
9 years ago
|
HTTPProxy(const std::string& address, int port, std::shared_ptr<i2p::client::ClientDestination> localDestination = nullptr);
|
||
|
~HTTPProxy() {};
|
||
10 years ago
|
|
||
10 years ago
|
protected:
|
||
|
// Implements TCPIPAcceptor
|
||
10 years ago
|
std::shared_ptr<i2p::client::I2PServiceHandler> CreateHandler(std::shared_ptr<boost::asio::ip::tcp::socket> socket);
|
||
10 years ago
|
const char* GetName() { return "HTTP Proxy"; }
|
||
11 years ago
|
};
|
||
9 years ago
|
} // http
|
||
|
} // i2p
|
||
11 years ago
|
|
||
10 years ago
|
#endif
|