mirror of https://github.com/PurpleI2P/i2pd.git
I2P: End-to-End encrypted and anonymous Internet
https://i2pd.website/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
694 B
32 lines
694 B
#ifndef SOCKS_H__ |
|
#define SOCKS_H__ |
|
|
|
#include <memory> |
|
#include <set> |
|
#include <boost/asio.hpp> |
|
#include <mutex> |
|
#include "I2PService.h" |
|
|
|
namespace i2p |
|
{ |
|
namespace proxy |
|
{ |
|
class SOCKSServer: public i2p::client::TCPIPAcceptor |
|
{ |
|
public: |
|
|
|
SOCKSServer(int port, std::shared_ptr<i2p::client::ClientDestination> localDestination = nullptr); |
|
~SOCKSServer() {}; |
|
|
|
protected: |
|
// Implements TCPIPAcceptor |
|
std::shared_ptr<i2p::client::I2PServiceHandler> CreateHandler(std::shared_ptr<boost::asio::ip::tcp::socket> socket); |
|
const char* GetName() { return "SOCKS"; } |
|
}; |
|
|
|
typedef SOCKSServer SOCKSProxy; |
|
} |
|
} |
|
|
|
|
|
#endif
|
|
|