2015-01-03 22:18:05 +01:00
|
|
|
#ifndef SOCKS_H__
|
|
|
|
#define SOCKS_H__
|
2014-07-14 12:40:06 -04:00
|
|
|
|
2014-11-23 11:33:58 -05:00
|
|
|
#include <memory>
|
2015-01-05 20:14:53 +01:00
|
|
|
#include <set>
|
2015-01-03 06:42:53 +01:00
|
|
|
#include <boost/asio.hpp>
|
2015-01-05 20:14:53 +01:00
|
|
|
#include <mutex>
|
2015-01-07 19:09:59 +01:00
|
|
|
#include "I2PService.h"
|
2014-07-14 12:40:06 -04:00
|
|
|
|
|
|
|
namespace i2p
|
|
|
|
{
|
|
|
|
namespace proxy
|
|
|
|
{
|
2015-01-08 01:45:49 +01:00
|
|
|
class SOCKSServer: public i2p::client::TCPIPAcceptor
|
2015-01-03 06:42:53 +01:00
|
|
|
{
|
2015-03-17 11:44:01 -04:00
|
|
|
public:
|
2017-11-14 13:20:54 -05:00
|
|
|
SOCKSServer(const std::string& name, const std::string& address, int port, bool outEnable, const std::string& outAddress, uint16_t outPort,
|
2016-01-24 09:59:02 -05:00
|
|
|
std::shared_ptr<i2p::client::ClientDestination> localDestination = nullptr);
|
2015-03-17 11:44:01 -04:00
|
|
|
~SOCKSServer() {};
|
|
|
|
|
2016-02-26 17:06:11 -05:00
|
|
|
void SetUpstreamProxy(const std::string & addr, const uint16_t port);
|
2017-07-19 00:21:02 +03:00
|
|
|
|
2015-01-08 01:45:49 +01:00
|
|
|
protected:
|
|
|
|
// Implements TCPIPAcceptor
|
2015-04-06 14:41:07 -04:00
|
|
|
std::shared_ptr<i2p::client::I2PServiceHandler> CreateHandler(std::shared_ptr<boost::asio::ip::tcp::socket> socket);
|
2017-11-14 13:20:54 -05:00
|
|
|
const char* GetName() { return m_Name.c_str (); }
|
2016-02-26 17:06:11 -05:00
|
|
|
|
2017-07-19 00:21:02 +03:00
|
|
|
private:
|
2017-11-14 13:20:54 -05:00
|
|
|
|
|
|
|
std::string m_Name;
|
2017-07-19 00:21:02 +03:00
|
|
|
std::string m_UpstreamProxyAddress;
|
|
|
|
uint16_t m_UpstreamProxyPort;
|
|
|
|
bool m_UseUpstreamProxy;
|
2015-01-05 20:14:53 +01:00
|
|
|
};
|
2014-07-14 12:40:06 -04:00
|
|
|
|
2015-01-03 21:57:15 +01:00
|
|
|
typedef SOCKSServer SOCKSProxy;
|
2014-07-14 12:40:06 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|