mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-03-22 00:59:08 +01:00
fixed typo
This commit is contained in:
parent
1f1a3270f7
commit
f67c38d8d2
2 changed files with 3 additions and 3 deletions
|
@ -269,7 +269,7 @@ namespace data
|
||||||
if (m_Floodfills.GetSize () < NETDB_NUM_FLOODFILLS_THRESHOLD || r->GetProfile ()->IsReal ())
|
if (m_Floodfills.GetSize () < NETDB_NUM_FLOODFILLS_THRESHOLD || r->GetProfile ()->IsReal ())
|
||||||
m_Floodfills.Insert (r);
|
m_Floodfills.Insert (r);
|
||||||
else
|
else
|
||||||
r->ResetFlooldFill ();
|
r->ResetFloodFill ();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -304,7 +304,7 @@ namespace data
|
||||||
m_Floodfills.Insert (r);
|
m_Floodfills.Insert (r);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
r->ResetFlooldFill ();
|
r->ResetFloodFill ();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|
|
@ -228,7 +228,7 @@ namespace data
|
||||||
void UpdateSupportedTransports ();
|
void UpdateSupportedTransports ();
|
||||||
void UpdateIntroducers (uint64_t ts); // ts in seconds
|
void UpdateIntroducers (uint64_t ts); // ts in seconds
|
||||||
bool IsFloodfill () const { return m_Caps & Caps::eFloodfill; };
|
bool IsFloodfill () const { return m_Caps & Caps::eFloodfill; };
|
||||||
void ResetFlooldFill () { m_Caps &= ~Caps::eFloodfill; };
|
void ResetFloodFill () { m_Caps &= ~Caps::eFloodfill; };
|
||||||
bool IsECIES () const { return m_RouterIdentity->GetCryptoKeyType () == i2p::data::CRYPTO_KEY_TYPE_ECIES_X25519_AEAD; };
|
bool IsECIES () const { return m_RouterIdentity->GetCryptoKeyType () == i2p::data::CRYPTO_KEY_TYPE_ECIES_X25519_AEAD; };
|
||||||
bool IsNTCP2 (bool v4only = true) const;
|
bool IsNTCP2 (bool v4only = true) const;
|
||||||
bool IsNTCP2V6 () const { return m_SupportedTransports & eNTCP2V6; };
|
bool IsNTCP2V6 () const { return m_SupportedTransports & eNTCP2V6; };
|
||||||
|
|
Loading…
Add table
Reference in a new issue