2014-03-17 22:31:29 +00:00
|
|
|
#ifndef HTTP_PROXY_H__
|
|
|
|
#define HTTP_PROXY_H__
|
|
|
|
|
2015-01-06 23:15:38 +00:00
|
|
|
#include <memory>
|
|
|
|
#include <set>
|
2014-03-17 22:31:29 +00:00
|
|
|
#include <boost/asio.hpp>
|
2015-01-06 23:15:38 +00:00
|
|
|
#include <mutex>
|
2015-01-07 18:09:59 +00:00
|
|
|
#include "I2PService.h"
|
2015-03-17 15:44:01 +00:00
|
|
|
#include "Destination.h"
|
2014-03-29 22:16:23 +00:00
|
|
|
|
2014-03-17 22:31:29 +00:00
|
|
|
namespace i2p
|
|
|
|
{
|
|
|
|
namespace proxy
|
|
|
|
{
|
2015-01-08 00:35:42 +00:00
|
|
|
class HTTPProxyServer: public i2p::client::TCPIPAcceptor
|
2014-03-17 22:31:29 +00:00
|
|
|
{
|
2015-03-17 15:44:01 +00:00
|
|
|
public:
|
|
|
|
|
2015-11-30 14:44:32 +00:00
|
|
|
HTTPProxyServer(const std::string& address, int port, std::shared_ptr<i2p::client::ClientDestination> localDestination = nullptr);
|
2015-03-17 15:44:01 +00:00
|
|
|
~HTTPProxyServer() {};
|
|
|
|
|
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
|
|
|
};
|
2015-01-06 23:15:38 +00:00
|
|
|
|
|
|
|
typedef HTTPProxyServer HTTPProxy;
|
2014-03-17 22:31:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-03-17 15:44:01 +00:00
|
|
|
#endif
|