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