2014-03-17 23:31:29 +01:00
|
|
|
#ifndef HTTP_PROXY_H__
|
|
|
|
#define HTTP_PROXY_H__
|
|
|
|
|
2016-06-23 02:00:00 +02:00
|
|
|
namespace i2p {
|
|
|
|
namespace proxy {
|
|
|
|
class HTTPProxy: public i2p::client::TCPIPAcceptor
|
2014-03-17 23:31:29 +01:00
|
|
|
{
|
2015-03-17 16:44:01 +01:00
|
|
|
public:
|
2020-03-01 11:25:50 +01:00
|
|
|
|
2019-04-25 22:06:14 +02:00
|
|
|
HTTPProxy(const std::string& name, const std::string& address, int port, const std::string & outproxy, bool addresshelper, std::shared_ptr<i2p::client::ClientDestination> localDestination);
|
2017-11-14 19:20:54 +01:00
|
|
|
HTTPProxy(const std::string& name, const std::string& address, int port, std::shared_ptr<i2p::client::ClientDestination> localDestination = nullptr) :
|
2019-04-25 22:06:14 +02:00
|
|
|
HTTPProxy(name, address, port, "", true, localDestination) {} ;
|
2016-06-23 02:00:00 +02:00
|
|
|
~HTTPProxy() {};
|
2015-03-17 16:44:01 +01:00
|
|
|
|
2017-10-27 14:42:54 +02:00
|
|
|
std::string GetOutproxyURL() const { return m_OutproxyUrl; }
|
2019-04-25 22:06:14 +02:00
|
|
|
bool GetHelperSupport() { return m_Addresshelper; }
|
2017-10-27 14:42:54 +02:00
|
|
|
|
2015-01-08 01:35:42 +01:00
|
|
|
protected:
|
2020-03-01 11:25:50 +01:00
|
|
|
|
2015-01-08 01:35:42 +01:00
|
|
|
// Implements TCPIPAcceptor
|
2015-04-06 20:41:07 +02:00
|
|
|
std::shared_ptr<i2p::client::I2PServiceHandler> CreateHandler(std::shared_ptr<boost::asio::ip::tcp::socket> socket);
|
2017-11-14 19:20:54 +01:00
|
|
|
const char* GetName() { return m_Name.c_str (); }
|
2017-10-27 14:42:54 +02:00
|
|
|
|
|
|
|
private:
|
2020-03-01 11:25:50 +01:00
|
|
|
|
2017-11-14 19:20:54 +01:00
|
|
|
std::string m_Name;
|
2017-10-27 14:42:54 +02:00
|
|
|
std::string m_OutproxyUrl;
|
2019-04-25 22:06:14 +02:00
|
|
|
bool m_Addresshelper;
|
2014-03-29 23:16:23 +01:00
|
|
|
};
|
2016-06-23 02:00:00 +02:00
|
|
|
} // http
|
|
|
|
} // i2p
|
2014-03-17 23:31:29 +01:00
|
|
|
|
2015-03-17 16:44:01 +01:00
|
|
|
#endif
|