#ifndef I2CP_H__ #define I2CP_H__ #include #include #include #include #include "Destination.h" namespace i2p { namespace client { const uint8_t I2CP_PRTOCOL_BYTE = 0x2A; const size_t I2CP_SESSION_BUFFER_SIZE = 4096; const size_t I2CP_HEADER_LENGTH_OFFSET = 0; const size_t I2CP_HEADER_TYPE_OFFSET = I2CP_HEADER_LENGTH_OFFSET + 4; const size_t I2CP_HEADER_SIZE = I2CP_HEADER_TYPE_OFFSET + 1; const uint8_t I2CP_GET_DATE_MESSAGE = 32; const uint8_t I2CP_SET_DATE_MESSAGE = 33; const uint8_t I2CP_CREATE_SESSION_MESSAGE = 1; class I2CPSession; class I2CPDestination: public LeaseSetDestination { public: I2CPDestination (I2CPSession& owner, std::shared_ptr identity, bool isPublic); protected: // implements LocalDestination std::shared_ptr GetIdentity () const { return m_Identity; }; void Sign (const uint8_t * buf, int len, uint8_t * signature) const { /* TODO */}; // I2CP void HandleDataMessage (const uint8_t * buf, size_t len) {}; private: I2CPSession& m_Owner; std::shared_ptr m_Identity; }; class I2CPServer; class I2CPSession: public std::enable_shared_from_this { public: I2CPSession (I2CPServer& owner, std::shared_ptr socket); ~I2CPSession (); // message handlers void GetDateMessageHandler (const uint8_t * buf, size_t len); void CreateSessionMessageHandler (const uint8_t * buf, size_t len); private: void ReadProtocolByte (); void Receive (); void HandleReceived (const boost::system::error_code& ecode, std::size_t bytes_transferred); void HandleNextMessage (const uint8_t * buf); void Terminate (); void SendI2CPMessage (uint8_t type, const uint8_t * payload, size_t len); void HandleI2CPMessageSent (const boost::system::error_code& ecode, std::size_t bytes_transferred, const uint8_t * buf); std::string ExtractString (const uint8_t * buf, size_t len); size_t PutString (uint8_t * buf, size_t len, const std::string& str); private: I2CPServer& m_Owner; std::shared_ptr m_Socket; uint8_t m_Buffer[I2CP_SESSION_BUFFER_SIZE], * m_NextMessage; size_t m_NextMessageLen, m_NextMessageOffset; std::shared_ptr m_Destination; }; typedef void (I2CPSession::*I2CPMessageHandler)(const uint8_t * buf, size_t len); class I2CPServer { public: I2CPServer (const std::string& interface, int port); private: I2CPMessageHandler m_MessagesHandlers[256]; public: const decltype(m_MessagesHandlers)& GetMessagesHandlers () const { return m_MessagesHandlers; }; }; } } #endif