mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2024-11-02 09:40:18 +00:00
37 lines
502 B
C++
37 lines
502 B
C++
#ifndef ADDRESS_BOOK_H__
|
|
#define ADDRESS_BOOK_H__
|
|
|
|
#include <string.h>
|
|
#include <string>
|
|
#include <map>
|
|
#include "base64.h"
|
|
#include "util.h"
|
|
#include "Identity.h"
|
|
#include "Log.h"
|
|
|
|
namespace i2p
|
|
{
|
|
namespace data
|
|
{
|
|
class AddressBook
|
|
{
|
|
public:
|
|
|
|
AddressBook ();
|
|
const IdentHash * FindAddress (const std::string& address);
|
|
|
|
private:
|
|
|
|
void LoadHosts ();
|
|
void LoadHostsFromI2P ();
|
|
|
|
std::map<std::string, IdentHash> m_Addresses;
|
|
bool m_IsLoaded, m_IsDowloading;
|
|
};
|
|
}
|
|
}
|
|
|
|
#endif
|
|
|
|
|