2014-03-13 18:22:32 +00:00
|
|
|
#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:
|
|
|
|
|
2014-04-01 19:18:14 +00:00
|
|
|
AddressBook ();
|
|
|
|
const IdentHash * FindAddress (const std::string& address);
|
2014-03-13 18:22:32 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
|
2014-04-01 19:18:14 +00:00
|
|
|
void LoadHosts ();
|
2014-04-06 19:22:33 +00:00
|
|
|
void LoadHostsFromI2P ();
|
2014-03-13 18:22:32 +00:00
|
|
|
|
|
|
|
std::map<std::string, IdentHash> m_Addresses;
|
|
|
|
bool m_IsLoaded;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|