mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-04-28 11:47:48 +02:00
Transport thread added
This commit is contained in:
parent
2893ec5a83
commit
595c745c90
2 changed files with 183 additions and 0 deletions
54
Transports.h
Normal file
54
Transports.h
Normal file
|
@ -0,0 +1,54 @@
|
|||
#ifndef TRANSPORTS_H__
|
||||
#define TRANSPORTS_H__
|
||||
|
||||
#include <thread>
|
||||
#include <functional>
|
||||
#include <map>
|
||||
#include <string>
|
||||
#include <boost/asio.hpp>
|
||||
#include "NTCPSession.h"
|
||||
#include "RouterInfo.h"
|
||||
#include "I2NPProtocol.h"
|
||||
|
||||
namespace i2p
|
||||
{
|
||||
class Transports
|
||||
{
|
||||
public:
|
||||
|
||||
Transports ();
|
||||
~Transports ();
|
||||
|
||||
void Start ();
|
||||
void Stop ();
|
||||
|
||||
boost::asio::io_service& GetService () { return m_Service; };
|
||||
|
||||
void AddNTCPSession (i2p::ntcp::NTCPSession * session);
|
||||
void RemoveNTCPSession (i2p::ntcp::NTCPSession * session);
|
||||
|
||||
i2p::ntcp::NTCPSession * GetNextNTCPSession ();
|
||||
i2p::ntcp::NTCPSession * FindNTCPSession (const uint8_t * ident);
|
||||
|
||||
void SendMessage (const uint8_t * ident, i2p::I2NPMessage * msg);
|
||||
|
||||
private:
|
||||
|
||||
void Run () { m_Service.run (); };
|
||||
void HandleAccept (i2p::ntcp::NTCPServerConnection * conn,
|
||||
const boost::system::error_code& error);
|
||||
|
||||
private:
|
||||
|
||||
std::thread * m_Thread;
|
||||
boost::asio::io_service m_Service;
|
||||
boost::asio::io_service::work m_Work;
|
||||
boost::asio::ip::tcp::acceptor * m_NTCPAcceptor;
|
||||
|
||||
std::map<std::string, i2p::ntcp::NTCPSession *> m_NTCPSessions;
|
||||
};
|
||||
|
||||
extern Transports transports;
|
||||
}
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue