|
|
@ -550,11 +550,15 @@ namespace data |
|
|
|
void NetDb::Publish () |
|
|
|
void NetDb::Publish () |
|
|
|
{ |
|
|
|
{ |
|
|
|
std::set<IdentHash> excluded; // TODO: fill up later
|
|
|
|
std::set<IdentHash> excluded; // TODO: fill up later
|
|
|
|
auto floodfill = GetClosestFloodfill (i2p::context.GetRouterInfo ().GetIdentHash (), excluded); |
|
|
|
for (int i = 0; i < 3; i++) |
|
|
|
if (floodfill) |
|
|
|
{ |
|
|
|
{ |
|
|
|
auto floodfill = GetClosestFloodfill (i2p::context.GetRouterInfo ().GetIdentHash (), excluded); |
|
|
|
LogPrint ("Publishing our RouterInfo to ", floodfill->GetIdentHashAbbreviation ()); |
|
|
|
if (floodfill) |
|
|
|
transports.SendMessage (floodfill->GetIdentHash (), CreateDatabaseStoreMsg ()); |
|
|
|
{ |
|
|
|
|
|
|
|
LogPrint ("Publishing our RouterInfo to ", floodfill->GetIdentHashAbbreviation ()); |
|
|
|
|
|
|
|
transports.SendMessage (floodfill->GetIdentHash (), CreateDatabaseStoreMsg ()); |
|
|
|
|
|
|
|
excluded.insert (floodfill->GetIdentHash ()); |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|