2015-01-04 00:18:05 +03:00
|
|
|
#ifndef SOCKS_H__
|
|
|
|
#define SOCKS_H__
|
2014-07-14 20:40:06 +04:00
|
|
|
|
2014-11-23 19:33:58 +03:00
|
|
|
#include <memory>
|
2015-01-05 22:14:53 +03:00
|
|
|
#include <set>
|
2015-01-03 08:42:53 +03:00
|
|
|
#include <boost/asio.hpp>
|
2015-01-05 22:14:53 +03:00
|
|
|
#include <mutex>
|
2015-01-07 21:09:59 +03:00
|
|
|
#include "I2PService.h"
|
2014-07-14 20:40:06 +04:00
|
|
|
|
|
|
|
namespace i2p
|
|
|
|
{
|
|
|
|
namespace proxy
|
|
|
|
{
|
2015-07-17 00:29:52 +03:00
|
|
|
class SOCKSServer: public i2p::client::TCPIPAcceptor
|
|
|
|
{
|
|
|
|
public:
|
2015-03-17 18:44:01 +03:00
|
|
|
|
2015-07-27 14:40:35 +03:00
|
|
|
SOCKSServer(const std::string& address, int port,
|
|
|
|
std::shared_ptr<i2p::client::ClientDestination> localDestination = nullptr);
|
2015-07-17 00:29:52 +03:00
|
|
|
~SOCKSServer() {};
|
2015-03-17 18:44:01 +03:00
|
|
|
|
2015-07-17 00:29:52 +03:00
|
|
|
protected:
|
|
|
|
// Implements TCPIPAcceptor
|
|
|
|
std::shared_ptr<i2p::client::I2PServiceHandler> CreateHandler(std::shared_ptr<boost::asio::ip::tcp::socket> socket);
|
|
|
|
const char* GetName() { return "SOCKS"; }
|
|
|
|
};
|
2014-07-14 20:40:06 +04:00
|
|
|
|
2015-07-17 00:29:52 +03:00
|
|
|
typedef SOCKSServer SOCKSProxy;
|
2014-07-14 20:40:06 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|