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.
115 lines
3.0 KiB
115 lines
3.0 KiB
#ifndef TRANSPORTS_H__ |
|
#define TRANSPORTS_H__ |
|
|
|
#include <thread> |
|
#include <mutex> |
|
#include <condition_variable> |
|
#include <functional> |
|
#include <map> |
|
#include <queue> |
|
#include <string> |
|
#include <memory> |
|
#include <cryptopp/osrng.h> |
|
#include <boost/asio.hpp> |
|
#include "TransportSession.h" |
|
#include "NTCPSession.h" |
|
#include "SSU.h" |
|
#include "RouterInfo.h" |
|
#include "I2NPProtocol.h" |
|
#include "Identity.h" |
|
|
|
namespace i2p |
|
{ |
|
namespace transport |
|
{ |
|
class DHKeysPairSupplier |
|
{ |
|
public: |
|
|
|
DHKeysPairSupplier (int size); |
|
~DHKeysPairSupplier (); |
|
void Start (); |
|
void Stop (); |
|
DHKeysPair * Acquire (); |
|
void Return (DHKeysPair * pair); |
|
|
|
private: |
|
|
|
void Run (); |
|
void CreateDHKeysPairs (int num); |
|
|
|
private: |
|
|
|
const int m_QueueSize; |
|
std::queue<DHKeysPair *> m_Queue; |
|
|
|
bool m_IsRunning; |
|
std::thread * m_Thread; |
|
std::condition_variable m_Acquired; |
|
std::mutex m_AcquiredMutex; |
|
CryptoPP::AutoSeededRandomPool m_Rnd; |
|
}; |
|
|
|
class Transports |
|
{ |
|
public: |
|
|
|
Transports (); |
|
~Transports (); |
|
|
|
void Start (); |
|
void Stop (); |
|
|
|
boost::asio::io_service& GetService () { return m_Service; }; |
|
i2p::transport::DHKeysPair * GetNextDHKeysPair (); |
|
void ReuseDHKeysPair (DHKeysPair * pair); |
|
|
|
void AddNTCPSession (std::shared_ptr<NTCPSession> session); |
|
void RemoveNTCPSession (std::shared_ptr<NTCPSession> session); |
|
|
|
std::shared_ptr<NTCPSession> GetNextNTCPSession (); |
|
std::shared_ptr<NTCPSession> FindNTCPSession (const i2p::data::IdentHash& ident); |
|
|
|
void SendMessage (const i2p::data::IdentHash& ident, i2p::I2NPMessage * msg); |
|
void CloseSession (std::shared_ptr<const i2p::data::RouterInfo> router); |
|
|
|
private: |
|
|
|
void Run (); |
|
void HandleAccept (std::shared_ptr<NTCPSession> conn, const boost::system::error_code& error); |
|
void HandleAcceptV6 (std::shared_ptr<NTCPSession> conn, const boost::system::error_code& error); |
|
void HandleResendTimer (const boost::system::error_code& ecode, boost::asio::deadline_timer * timer, |
|
const i2p::data::IdentHash& ident, i2p::I2NPMessage * msg); |
|
void PostMessage (const i2p::data::IdentHash& ident, i2p::I2NPMessage * msg); |
|
void PostCloseSession (std::shared_ptr<const i2p::data::RouterInfo> router); |
|
|
|
void Connect (const boost::asio::ip::address& address, int port, std::shared_ptr<NTCPSession> conn); |
|
void HandleConnect (const boost::system::error_code& ecode, std::shared_ptr<NTCPSession> conn); |
|
|
|
void DetectExternalIP (); |
|
|
|
private: |
|
|
|
bool m_IsRunning; |
|
std::thread * m_Thread; |
|
boost::asio::io_service m_Service; |
|
boost::asio::io_service::work m_Work; |
|
boost::asio::ip::tcp::acceptor * m_NTCPAcceptor, * m_NTCPV6Acceptor; |
|
|
|
std::map<i2p::data::IdentHash, std::shared_ptr<NTCPSession> > m_NTCPSessions; |
|
SSUServer * m_SSUServer; |
|
|
|
DHKeysPairSupplier m_DHKeysPairSupplier; |
|
|
|
public: |
|
|
|
// for HTTP only |
|
const decltype(m_NTCPSessions)& GetNTCPSessions () const { return m_NTCPSessions; }; |
|
const SSUServer * GetSSUServer () const { return m_SSUServer; }; |
|
}; |
|
|
|
extern Transports transports; |
|
} |
|
} |
|
|
|
#endif
|
|
|