i2pd/Transports.h

63 lines
1.4 KiB
C
Raw Normal View History

2013-10-27 19:26:39 +04:00
#ifndef TRANSPORTS_H__
#define TRANSPORTS_H__
#include <thread>
#include <functional>
#include <map>
#include <string>
#include <boost/asio.hpp>
#include "NTCPSession.h"
2014-01-24 01:10:33 +04:00
#include "SSU.h"
2013-10-27 19:26:39 +04:00
#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 ();
2013-11-29 16:52:09 +04:00
i2p::ntcp::NTCPSession * FindNTCPSession (const i2p::data::IdentHash& ident);
2013-10-27 19:26:39 +04:00
2013-11-29 16:52:09 +04:00
void SendMessage (const i2p::data::IdentHash& ident, i2p::I2NPMessage * msg);
2013-10-27 19:26:39 +04:00
private:
2013-11-29 16:52:09 +04:00
void Run ();
void HandleAccept (i2p::ntcp::NTCPServerConnection * conn, const boost::system::error_code& error);
2013-12-29 19:48:57 +04:00
void PostMessage (const i2p::data::IdentHash& ident, i2p::I2NPMessage * msg);
2013-10-27 19:26:39 +04:00
private:
2013-12-29 19:48:57 +04:00
bool m_IsRunning;
2013-10-27 19:26:39 +04:00
std::thread * m_Thread;
boost::asio::io_service m_Service;
boost::asio::io_service::work m_Work;
boost::asio::ip::tcp::acceptor * m_NTCPAcceptor;
2013-11-29 16:52:09 +04:00
std::map<i2p::data::IdentHash, i2p::ntcp::NTCPSession *> m_NTCPSessions;
2014-01-24 01:10:33 +04:00
i2p::ssu::SSUServer * m_SSUServer;
2013-12-10 17:10:49 +04:00
public:
// for HTTP only
const decltype(m_NTCPSessions)& GetNTCPSessions () const { return m_NTCPSessions; };
2013-10-27 19:26:39 +04:00
};
extern Transports transports;
}
#endif