|
|
@ -6,6 +6,7 @@ |
|
|
|
* See full license text in LICENSE file at top of project tree |
|
|
|
* See full license text in LICENSE file at top of project tree |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#include <random> |
|
|
|
#include "Log.h" |
|
|
|
#include "Log.h" |
|
|
|
#include "RouterContext.h" |
|
|
|
#include "RouterContext.h" |
|
|
|
#include "Transports.h" |
|
|
|
#include "Transports.h" |
|
|
@ -576,15 +577,24 @@ namespace transport |
|
|
|
auto ts = i2p::util::GetSecondsSinceEpoch (); |
|
|
|
auto ts = i2p::util::GetSecondsSinceEpoch (); |
|
|
|
std::shared_ptr<i2p::data::RouterInfo> r; |
|
|
|
std::shared_ptr<i2p::data::RouterInfo> r; |
|
|
|
uint32_t relayTag = 0; |
|
|
|
uint32_t relayTag = 0; |
|
|
|
for (auto& it: address->ssu->introducers) |
|
|
|
if (!address->ssu->introducers.empty ()) |
|
|
|
{ |
|
|
|
{ |
|
|
|
if (it.iTag && ts < it.iExp) |
|
|
|
std::vector<int> indicies; |
|
|
|
|
|
|
|
for (int i = 0; i < (int)address->ssu->introducers.size (); i++) indicies.push_back(i); |
|
|
|
|
|
|
|
if (indicies.size () > 1) |
|
|
|
|
|
|
|
std::shuffle (indicies.begin(), indicies.end(), std::mt19937(std::random_device()())); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
for (auto i: indicies) |
|
|
|
{ |
|
|
|
{ |
|
|
|
r = i2p::data::netdb.FindRouter (it.iKey); |
|
|
|
const auto& introducer = address->ssu->introducers[indicies[i]]; |
|
|
|
if (r && r->IsReachableFrom (i2p::context.GetRouterInfo ())) |
|
|
|
if (introducer.iTag && ts < introducer.iExp) |
|
|
|
{ |
|
|
|
{ |
|
|
|
relayTag = it.iTag; |
|
|
|
r = i2p::data::netdb.FindRouter (introducer.iKey); |
|
|
|
if (relayTag) break; |
|
|
|
if (r && r->IsReachableFrom (i2p::context.GetRouterInfo ())) |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
relayTag = introducer.iTag; |
|
|
|
|
|
|
|
if (relayTag) break; |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|