2014-03-17 23:31:29 +01:00
|
|
|
#ifndef HTTP_PROXY_H__
|
|
|
|
#define HTTP_PROXY_H__
|
|
|
|
|
2015-01-07 00:15:38 +01:00
|
|
|
#include <memory>
|
|
|
|
#include <set>
|
2014-03-17 23:31:29 +01:00
|
|
|
#include <boost/asio.hpp>
|
2015-01-07 00:15:38 +01:00
|
|
|
#include <mutex>
|
2015-01-07 19:09:59 +01:00
|
|
|
#include "I2PService.h"
|
2015-03-17 11:44:01 -04:00
|
|
|
#include "Destination.h"
|
2014-03-30 02:16:23 +04:00
|
|
|
|
2014-03-17 23:31:29 +01:00
|
|
|
namespace i2p
|
|
|
|
{
|
|
|
|
namespace proxy
|
|
|
|
{
|
2015-01-08 01:35:42 +01:00
|
|
|
class HTTPProxyServer: public i2p::client::TCPIPAcceptor
|
2014-03-17 23:31:29 +01:00
|
|
|
{
|
2015-03-17 11:44:01 -04:00
|
|
|
public:
|
|
|
|
|
2015-11-30 16:44:32 +02:00
|
|
|
HTTPProxyServer(const std::string& address, int port, std::shared_ptr<i2p::client::ClientDestination> localDestination = nullptr);
|
2015-03-17 11:44:01 -04:00
|
|
|
~HTTPProxyServer() {};
|
|
|
|
|
2015-01-08 01:35:42 +01:00
|
|
|
protected:
|
|
|
|
// Implements TCPIPAcceptor
|
2015-04-06 14:41:07 -04:00
|
|
|
std::shared_ptr<i2p::client::I2PServiceHandler> CreateHandler(std::shared_ptr<boost::asio::ip::tcp::socket> socket);
|
2015-01-08 01:35:42 +01:00
|
|
|
const char* GetName() { return "HTTP Proxy"; }
|
2014-03-30 02:16:23 +04:00
|
|
|
};
|
2015-01-07 00:15:38 +01:00
|
|
|
|
|
|
|
typedef HTTPProxyServer HTTPProxy;
|
2014-03-17 23:31:29 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-03-17 11:44:01 -04:00
|
|
|
#endif
|