mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-03-18 23:36:39 +01:00
router don't expire if less than 75
This commit is contained in:
parent
27bd193708
commit
a8b4f38865
1 changed files with 12 additions and 3 deletions
15
NetDb.cpp
15
NetDb.cpp
|
@ -41,7 +41,7 @@ namespace data
|
||||||
void NetDb::Start ()
|
void NetDb::Start ()
|
||||||
{
|
{
|
||||||
Load (m_NetDbPath);
|
Load (m_NetDbPath);
|
||||||
if (m_RouterInfos.size () < 50) // reseed if # of router less than 50
|
if (m_RouterInfos.size () < 25) // reseed if # of router less than 50
|
||||||
{
|
{
|
||||||
// try SU3 first
|
// try SU3 first
|
||||||
Reseed ();
|
Reseed ();
|
||||||
|
@ -51,7 +51,7 @@ namespace data
|
||||||
{
|
{
|
||||||
// if still not enough download .dat files
|
// if still not enough download .dat files
|
||||||
int reseedRetries = 0;
|
int reseedRetries = 0;
|
||||||
while (m_RouterInfos.size () < 50 && reseedRetries < 10)
|
while (m_RouterInfos.size () < 25 && reseedRetries < 5)
|
||||||
{
|
{
|
||||||
m_Reseeder->reseedNow();
|
m_Reseeder->reseedNow();
|
||||||
reseedRetries++;
|
reseedRetries++;
|
||||||
|
@ -384,22 +384,31 @@ namespace data
|
||||||
// RouterInfo expires after 1 hour if uses introducer
|
// RouterInfo expires after 1 hour if uses introducer
|
||||||
if (it.second->UsesIntroducer () && ts > it.second->GetTimestamp () + 3600*1000LL) // 1 hour
|
if (it.second->UsesIntroducer () && ts > it.second->GetTimestamp () + 3600*1000LL) // 1 hour
|
||||||
it.second->SetUnreachable (true);
|
it.second->SetUnreachable (true);
|
||||||
else if (total > 25 && ts > (i2p::context.GetStartupTime () + 600)*1000LL) // routers don't expire if less than 25 or uptime is less than 10 minutes
|
else if (total > 75 && ts > (i2p::context.GetStartupTime () + 600)*1000LL) // routers don't expire if less than 25 or uptime is less than 10 minutes
|
||||||
{
|
{
|
||||||
if (i2p::context.IsFloodfill ())
|
if (i2p::context.IsFloodfill ())
|
||||||
{
|
{
|
||||||
if (ts > it.second->GetTimestamp () + 3600*1000LL) // 1 hours
|
if (ts > it.second->GetTimestamp () + 3600*1000LL) // 1 hours
|
||||||
|
{
|
||||||
it.second->SetUnreachable (true);
|
it.second->SetUnreachable (true);
|
||||||
|
total--;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
else if (total > 300)
|
else if (total > 300)
|
||||||
{
|
{
|
||||||
if (ts > it.second->GetTimestamp () + 30*3600*1000LL) // 30 hours
|
if (ts > it.second->GetTimestamp () + 30*3600*1000LL) // 30 hours
|
||||||
|
{
|
||||||
it.second->SetUnreachable (true);
|
it.second->SetUnreachable (true);
|
||||||
|
total--;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
else if (total > 120)
|
else if (total > 120)
|
||||||
{
|
{
|
||||||
if (ts > it.second->GetTimestamp () + 72*3600*1000LL) // 72 hours
|
if (ts > it.second->GetTimestamp () + 72*3600*1000LL) // 72 hours
|
||||||
|
{
|
||||||
it.second->SetUnreachable (true);
|
it.second->SetUnreachable (true);
|
||||||
|
total--;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue