mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-04-24 09:56:35 +02:00
make it compile
This commit is contained in:
parent
0eab8e9322
commit
10911f5b64
1 changed files with 2 additions and 2 deletions
|
@ -503,12 +503,12 @@ namespace data
|
||||||
if (floodfill)
|
if (floodfill)
|
||||||
{
|
{
|
||||||
auto h = floodfill->GetIdentHash();
|
auto h = floodfill->GetIdentHash();
|
||||||
excluded.push_back(h);
|
excluded.insert(h);
|
||||||
LogPrint(eLogDebug, "NetDb: Flood lease set for ", ident.ToBase32(), " to ", h.ToBase64());
|
LogPrint(eLogDebug, "NetDb: Flood lease set for ", ident.ToBase32(), " to ", h.ToBase64());
|
||||||
transports.SendMessage (h, floodMsg);
|
transports.SendMessage (h, floodMsg);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
LogPrint(eLogWarning, "NetDb: failed to flood, no close floodfill for ", ident.ToBase32());
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|
Loading…
Add table
Reference in a new issue