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.
42 lines
901 B
42 lines
901 B
#ifndef HTTP_PROXY_H__ |
|
#define HTTP_PROXY_H__ |
|
|
|
#include <memory> |
|
#include <set> |
|
#include <boost/asio.hpp> |
|
#include <mutex> |
|
#include "I2PService.h" |
|
|
|
namespace i2p |
|
{ |
|
namespace proxy |
|
{ |
|
class HTTPProxyHandler; |
|
class HTTPProxyServer: public i2p::client::I2PService |
|
{ |
|
private: |
|
std::set<std::shared_ptr<HTTPProxyHandler> > m_Handlers; |
|
boost::asio::ip::tcp::acceptor m_Acceptor; |
|
boost::asio::deadline_timer m_Timer; |
|
std::mutex m_HandlersMutex; |
|
|
|
private: |
|
|
|
void Accept(); |
|
void HandleAccept(const boost::system::error_code& ecode, boost::asio::ip::tcp::socket * socket); |
|
|
|
public: |
|
HTTPProxyServer(int port) : I2PService(nullptr), |
|
m_Acceptor (GetService (), boost::asio::ip::tcp::endpoint (boost::asio::ip::tcp::v4(), port)), |
|
m_Timer (GetService ()) {}; |
|
~HTTPProxyServer() { Stop(); } |
|
|
|
void Start (); |
|
void Stop (); |
|
}; |
|
|
|
typedef HTTPProxyServer HTTPProxy; |
|
} |
|
} |
|
|
|
#endif |