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.
63 lines
1.3 KiB
63 lines
1.3 KiB
#ifndef NETDB_H__ |
|
#define NETDB_H__ |
|
|
|
#include <inttypes.h> |
|
#include <map> |
|
#include <string> |
|
#include <thread> |
|
#include "Queue.h" |
|
#include "I2NPProtocol.h" |
|
#include "RouterInfo.h" |
|
#include "LeaseSet.h" |
|
|
|
namespace i2p |
|
{ |
|
namespace data |
|
{ |
|
class NetDb |
|
{ |
|
public: |
|
|
|
NetDb (); |
|
~NetDb (); |
|
|
|
void Start (); |
|
void Stop (); |
|
|
|
void AddRouterInfo (uint8_t * buf, int len); |
|
void AddLeaseSet (uint8_t * buf, int len); |
|
RouterInfo * FindRouter (const uint8_t * ident); |
|
|
|
void RequestDestination (const uint8_t * destination, const uint8_t * router); |
|
void HandleDatabaseSearchReply (const uint8_t * key, const uint8_t * router); |
|
void HandleDatabaseSearchReplyMsg (I2NPMessage * msg); |
|
|
|
const RouterInfo * GetRandomNTCPRouter (bool floodfillOnly = false) const; |
|
const RouterInfo * GetRandomRouter () const; |
|
|
|
void PostI2NPMsg (I2NPMessage * msg); |
|
|
|
private: |
|
|
|
void Load (const char * directory); |
|
void SaveUpdated (const char * directory); |
|
void Run (); // exploratory thread |
|
void Explore (); |
|
|
|
private: |
|
|
|
std::map<std::string, LeaseSet *> m_LeaseSets; |
|
std::map<std::string, RouterInfo *> m_RouterInfos; |
|
|
|
bool m_IsRunning; |
|
std::thread * m_Thread; |
|
uint8_t m_Exploratory[32]; |
|
const RouterInfo * m_LastFloodfill; |
|
i2p::util::Queue<I2NPMessage> m_Queue; // of I2NPDatabaseStoreMsg |
|
}; |
|
|
|
extern NetDb netdb; |
|
} |
|
} |
|
|
|
#endif
|
|
|