Browse Source

Merge pull request #1774 from simonvetter/openssl

fix SSU2 introducers selection logic
pull/1776/head
orignal 2 years ago committed by GitHub
parent
commit
efbaf02016
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      libi2pd/SSU2.cpp

4
libi2pd/SSU2.cpp

@ -730,8 +730,8 @@ namespace transport @@ -730,8 +730,8 @@ namespace transport
{
if (s.second->IsEstablished () && (s.second->GetRelayTag () && !s.second->IsOutgoing ()) &&
!excluded.count (s.second->GetRemoteIdentity ()->GetIdentHash ()) &&
((v4 && (s.second->GetRemoteTransports () | i2p::data::RouterInfo::eSSU2V4)) ||
(!v4 && (s.second->GetRemoteTransports () | i2p::data::RouterInfo::eSSU2V6))))
((v4 && (s.second->GetRemoteTransports () & i2p::data::RouterInfo::eSSU2V4)) ||
(!v4 && (s.second->GetRemoteTransports () & i2p::data::RouterInfo::eSSU2V6))))
ret.push_back (s.second);
}
if ((int)ret.size () > maxNumIntroducers)

Loading…
Cancel
Save