mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-02-08 22:13:48 +01:00
improve hosts.txt loading
This commit is contained in:
parent
aaa14d4564
commit
0e49d4dcd6
1 changed files with 16 additions and 8 deletions
|
@ -39,18 +39,26 @@ void AddressBook::LoadHosts ()
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
int numAddresses = 0;
|
int numAddresses = 0;
|
||||||
char str[1024];
|
|
||||||
|
std::string s;
|
||||||
|
|
||||||
while (!f.eof ())
|
while (!f.eof ())
|
||||||
{
|
{
|
||||||
f.getline (str, 1024);
|
getline(f, s);
|
||||||
char * key = strchr (str, '=');
|
|
||||||
if (key)
|
if (!s.length())
|
||||||
|
break;
|
||||||
|
|
||||||
|
size_t pos = s.find('=');
|
||||||
|
|
||||||
|
if (pos != std::string::npos)
|
||||||
{
|
{
|
||||||
*key = 0;
|
std::string name = s.substr(0, pos++);
|
||||||
key++;
|
std::string addr = s.substr(pos);
|
||||||
|
|
||||||
Identity ident;
|
Identity ident;
|
||||||
Base64ToByteStream (key, strlen(key), (uint8_t *)&ident, sizeof (ident));
|
Base64ToByteStream (addr.c_str(), addr.length(), (uint8_t *)&ident, sizeof (ident));
|
||||||
m_Addresses[str] = CalculateIdentHash (ident);
|
m_Addresses[name] = CalculateIdentHash (ident);
|
||||||
numAddresses++;
|
numAddresses++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue