1
0
mirror of https://github.com/PurpleI2P/i2pd.git synced 2025-01-22 04:04:16 +00:00

Merge pull request #1952 from Vort/explicit0hops

allow 0 hops with explicitPeers
This commit is contained in:
orignal 2023-07-19 10:43:03 -04:00 committed by GitHub
commit d3cd8517b7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -570,9 +570,9 @@ namespace tunnel
bool TunnelPool::SelectExplicitPeers (Path& path, bool isInbound)
{
if (!m_ExplicitPeers->size ()) return false;
int numHops = isInbound ? m_NumInboundHops : m_NumOutboundHops;
if (numHops > (int)m_ExplicitPeers->size ()) numHops = m_ExplicitPeers->size ();
if (!numHops) return false;
for (int i = 0; i < numHops; i++)
{
auto& ident = (*m_ExplicitPeers)[i];