mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-02-06 23:24:15 +00:00
improve hosts.txt loading
This commit is contained in:
parent
a82bd628c1
commit
8725599d96
@ -80,7 +80,7 @@ void AddressBook::LoadHosts ()
|
||||
getline(f, s);
|
||||
|
||||
if (!s.length())
|
||||
break;
|
||||
continue; // skip empty line
|
||||
|
||||
size_t pos = s.find('=');
|
||||
|
||||
@ -90,8 +90,11 @@ void AddressBook::LoadHosts ()
|
||||
std::string addr = s.substr(pos);
|
||||
|
||||
Identity ident;
|
||||
Base64ToByteStream (addr.c_str(), addr.length(), (uint8_t *)&ident, sizeof (ident));
|
||||
m_Addresses[name] = CalculateIdentHash (ident);
|
||||
if (!ident.FromBase64(addr)) {
|
||||
LogPrint ("hosts.txt: ignore ", name);
|
||||
continue;
|
||||
}
|
||||
m_Addresses[name] = ident.Hash();
|
||||
numAddresses++;
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user