i2pd/HTTPProxy.h

31 lines
647 B
C
Raw Normal View History

2014-03-18 02:31:29 +04:00
#ifndef HTTP_PROXY_H__
#define HTTP_PROXY_H__
#include <memory>
#include <set>
2014-03-18 02:31:29 +04:00
#include <boost/asio.hpp>
#include <mutex>
#include "I2PService.h"
2014-03-18 02:31:29 +04:00
namespace i2p
{
namespace proxy
{
class HTTPProxyHandler;
2015-01-08 03:35:42 +03:00
class HTTPProxyServer: public i2p::client::TCPIPAcceptor
2014-03-18 02:31:29 +04:00
{
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"; }
public:
2015-01-08 03:35:42 +03:00
HTTPProxyServer(int port) : TCPIPAcceptor(port, i2p::data::SIGNING_KEY_TYPE_DSA_SHA1) {}
~HTTPProxyServer() {}
};
typedef HTTPProxyServer HTTPProxy;
2014-03-18 02:31:29 +04:00
}
}
#endif