i2pd/AddressBook.h

36 lines
457 B
C
Raw Normal View History

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