|
|
|
@ -49,6 +49,9 @@ namespace client
@@ -49,6 +49,9 @@ namespace client
|
|
|
|
|
bool AddressBookFilesystemStorage::Init() |
|
|
|
|
{ |
|
|
|
|
storage.SetPlace(i2p::fs::GetDataDir()); |
|
|
|
|
// init storage
|
|
|
|
|
if (storage.Init(i2p::data::GetBase32SubstitutionTable(), 32)) |
|
|
|
|
{ |
|
|
|
|
// init ETags
|
|
|
|
|
etagsPath = i2p::fs::StorageRootPath (storage, "etags"); |
|
|
|
|
if (!i2p::fs::Exists (etagsPath)) |
|
|
|
@ -56,8 +59,9 @@ namespace client
@@ -56,8 +59,9 @@ namespace client
|
|
|
|
|
// init address files
|
|
|
|
|
indexPath = i2p::fs::StorageRootPath (storage, "addresses.csv"); |
|
|
|
|
localPath = i2p::fs::StorageRootPath (storage, "local.csv"); |
|
|
|
|
// init storage
|
|
|
|
|
return storage.Init(i2p::data::GetBase32SubstitutionTable(), 32); |
|
|
|
|
return true; |
|
|
|
|
} |
|
|
|
|
return false; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
std::shared_ptr<const i2p::data::IdentityEx> AddressBookFilesystemStorage::GetAddress (const i2p::data::IdentHash& ident) const |
|
|
|
|