mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2024-11-16 00:12:43 +00:00
don't publish introducers with zero iTag
This commit is contained in:
parent
e170c39dfc
commit
38795a41cb
@ -1028,7 +1028,7 @@ namespace transport
|
|||||||
if (it1 != m_SessionsByRouterHash.end ())
|
if (it1 != m_SessionsByRouterHash.end ())
|
||||||
{
|
{
|
||||||
auto session = it1->second;
|
auto session = it1->second;
|
||||||
if (session->IsEstablished ())
|
if (session->IsEstablished () && session->GetRelayTag () && session->IsOutgoing ())
|
||||||
{
|
{
|
||||||
session->SetCreationTime (session->GetCreationTime () + SSU2_TO_INTRODUCER_SESSION_DURATION);
|
session->SetCreationTime (session->GetCreationTime () + SSU2_TO_INTRODUCER_SESSION_DURATION);
|
||||||
if (std::find (newList.begin (), newList.end (), it) == newList.end ())
|
if (std::find (newList.begin (), newList.end (), it) == newList.end ())
|
||||||
@ -1040,11 +1040,12 @@ namespace transport
|
|||||||
|
|
||||||
for (const auto& it : sessions)
|
for (const auto& it : sessions)
|
||||||
{
|
{
|
||||||
|
uint32_t tag = it->GetRelayTag ();
|
||||||
uint32_t exp = it->GetCreationTime () + SSU2_TO_INTRODUCER_SESSION_EXPIRATION;
|
uint32_t exp = it->GetCreationTime () + SSU2_TO_INTRODUCER_SESSION_EXPIRATION;
|
||||||
if (ts + SSU2_TO_INTRODUCER_SESSION_DURATION/2 > exp)
|
if (!tag || ts + SSU2_TO_INTRODUCER_SESSION_DURATION/2 > exp)
|
||||||
continue; // don't pick too old session for introducer
|
continue; // don't pick too old session for introducer
|
||||||
i2p::data::RouterInfo::Introducer introducer;
|
i2p::data::RouterInfo::Introducer introducer;
|
||||||
introducer.iTag = it->GetRelayTag ();
|
introducer.iTag = tag;
|
||||||
introducer.iH = it->GetRemoteIdentity ()->GetIdentHash ();
|
introducer.iH = it->GetRemoteIdentity ()->GetIdentHash ();
|
||||||
introducer.iExp = exp;
|
introducer.iExp = exp;
|
||||||
excluded.insert (it->GetRemoteIdentity ()->GetIdentHash ());
|
excluded.insert (it->GetRemoteIdentity ()->GetIdentHash ());
|
||||||
|
Loading…
Reference in New Issue
Block a user