2020-05-22 13:18:41 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2013-2020, The PurpleI2P Project
|
|
|
|
*
|
|
|
|
* This file is part of Purple i2pd project and licensed under BSD3
|
|
|
|
*
|
|
|
|
* See full license text in LICENSE file at top of project tree
|
|
|
|
*/
|
|
|
|
|
2014-03-17 22:31:29 +00:00
|
|
|
#ifndef HTTP_PROXY_H__
|
|
|
|
#define HTTP_PROXY_H__
|
|
|
|
|
2016-06-23 00:00:00 +00:00
|
|
|
namespace i2p {
|
|
|
|
namespace proxy {
|
|
|
|
class HTTPProxy: public i2p::client::TCPIPAcceptor
|
2014-03-17 22:31:29 +00:00
|
|
|
{
|
2015-03-17 15:44:01 +00:00
|
|
|
public:
|
2020-03-01 10:25:50 +00:00
|
|
|
|
2019-04-25 20:06:14 +00: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 18:20:54 +00:00
|
|
|
HTTPProxy(const std::string& name, const std::string& address, int port, std::shared_ptr<i2p::client::ClientDestination> localDestination = nullptr) :
|
2019-04-25 20:06:14 +00:00
|
|
|
HTTPProxy(name, address, port, "", true, localDestination) {} ;
|
2016-06-23 00:00:00 +00:00
|
|
|
~HTTPProxy() {};
|
2015-03-17 15:44:01 +00:00
|
|
|
|
2017-10-27 12:42:54 +00:00
|
|
|
std::string GetOutproxyURL() const { return m_OutproxyUrl; }
|
2019-04-25 20:06:14 +00:00
|
|
|
bool GetHelperSupport() { return m_Addresshelper; }
|
2017-10-27 12:42:54 +00:00
|
|
|
|
2015-01-08 00:35:42 +00:00
|
|
|
protected:
|
2020-03-01 10:25:50 +00:00
|
|
|
|
2015-01-08 00:35:42 +00:00
|
|
|
// 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);
|
2017-11-14 18:20:54 +00:00
|
|
|
const char* GetName() { return m_Name.c_str (); }
|
2017-10-27 12:42:54 +00:00
|
|
|
|
|
|
|
private:
|
2020-03-01 10:25:50 +00:00
|
|
|
|
2017-11-14 18:20:54 +00:00
|
|
|
std::string m_Name;
|
2017-10-27 12:42:54 +00:00
|
|
|
std::string m_OutproxyUrl;
|
2019-04-25 20:06:14 +00:00
|
|
|
bool m_Addresshelper;
|
2014-03-29 22:16:23 +00:00
|
|
|
};
|
2016-06-23 00:00:00 +00:00
|
|
|
} // http
|
|
|
|
} // i2p
|
2014-03-17 22:31:29 +00:00
|
|
|
|
2015-03-17 15:44:01 +00:00
|
|
|
#endif
|