|
|
@ -654,13 +654,14 @@ namespace client |
|
|
|
bool ClientDestination::SendLeaseSetRequest (const i2p::data::IdentHash& dest, |
|
|
|
bool ClientDestination::SendLeaseSetRequest (const i2p::data::IdentHash& dest, |
|
|
|
std::shared_ptr<const i2p::data::RouterInfo> nextFloodfill, std::shared_ptr<LeaseSetRequest> request) |
|
|
|
std::shared_ptr<const i2p::data::RouterInfo> nextFloodfill, std::shared_ptr<LeaseSetRequest> request) |
|
|
|
{ |
|
|
|
{ |
|
|
|
auto replyTunnel = m_Pool->GetNextInboundTunnel (); |
|
|
|
if (!request->replyTunnel || !request->replyTunnel->IsEstablished ()) |
|
|
|
if (!replyTunnel) LogPrint (eLogError, "Destination: Can't send LeaseSet request, no inbound tunnels found"); |
|
|
|
request->replyTunnel = m_Pool->GetNextInboundTunnel (); |
|
|
|
|
|
|
|
if (!request->replyTunnel) LogPrint (eLogError, "Destination: Can't send LeaseSet request, no inbound tunnels found"); |
|
|
|
|
|
|
|
if (!request->outboundTunnel || !request->outboundTunnel->IsEstablished ()) |
|
|
|
|
|
|
|
request->outboundTunnel = m_Pool->GetNextOutboundTunnel (); |
|
|
|
|
|
|
|
if (!request->outboundTunnel) LogPrint (eLogError, "Destination: Can't send LeaseSet request, no outbound tunnels found"); |
|
|
|
|
|
|
|
|
|
|
|
auto outboundTunnel = m_Pool->GetNextOutboundTunnel (); |
|
|
|
if (request->replyTunnel && request->outboundTunnel) |
|
|
|
if (!outboundTunnel) LogPrint (eLogError, "Destination: Can't send LeaseSet request, no outbound tunnels found"); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (replyTunnel && outboundTunnel) |
|
|
|
|
|
|
|
{ |
|
|
|
{ |
|
|
|
request->excluded.insert (nextFloodfill->GetIdentHash ()); |
|
|
|
request->excluded.insert (nextFloodfill->GetIdentHash ()); |
|
|
|
request->requestTime = i2p::util::GetSecondsSinceEpoch (); |
|
|
|
request->requestTime = i2p::util::GetSecondsSinceEpoch (); |
|
|
@ -673,8 +674,8 @@ namespace client |
|
|
|
|
|
|
|
|
|
|
|
auto msg = WrapMessage (nextFloodfill, |
|
|
|
auto msg = WrapMessage (nextFloodfill, |
|
|
|
CreateLeaseSetDatabaseLookupMsg (dest, request->excluded, |
|
|
|
CreateLeaseSetDatabaseLookupMsg (dest, request->excluded, |
|
|
|
replyTunnel.get (), replyKey, replyTag)); |
|
|
|
request->replyTunnel, replyKey, replyTag)); |
|
|
|
outboundTunnel->SendTunnelDataMsg ( |
|
|
|
request->outboundTunnel->SendTunnelDataMsg ( |
|
|
|
{ |
|
|
|
{ |
|
|
|
i2p::tunnel::TunnelMessageBlock |
|
|
|
i2p::tunnel::TunnelMessageBlock |
|
|
|
{ |
|
|
|
{ |
|
|
@ -704,7 +705,12 @@ namespace client |
|
|
|
{ |
|
|
|
{ |
|
|
|
auto floodfill = i2p::data::netdb.GetClosestFloodfill (dest, it->second->excluded); |
|
|
|
auto floodfill = i2p::data::netdb.GetClosestFloodfill (dest, it->second->excluded); |
|
|
|
if (floodfill) |
|
|
|
if (floodfill) |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
// reset tunnels, because one them might fail
|
|
|
|
|
|
|
|
it->second->outboundTunnel = nullptr; |
|
|
|
|
|
|
|
it->second->replyTunnel = nullptr; |
|
|
|
done = !SendLeaseSetRequest (dest, floodfill, it->second); |
|
|
|
done = !SendLeaseSetRequest (dest, floodfill, it->second); |
|
|
|
|
|
|
|
} |
|
|
|
else |
|
|
|
else |
|
|
|
done = true; |
|
|
|
done = true; |
|
|
|
} |
|
|
|
} |
|
|
|