mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-01-22 08:14:15 +00:00
use shared local destination for lookup if destination is not set
This commit is contained in:
parent
f17df1f16d
commit
f0d098d0ef
9
BOB.cpp
9
BOB.cpp
@ -504,17 +504,12 @@ namespace client
|
|||||||
{
|
{
|
||||||
LogPrint (eLogDebug, "BOB: lookup ", operand);
|
LogPrint (eLogDebug, "BOB: lookup ", operand);
|
||||||
i2p::data::IdentHash ident;
|
i2p::data::IdentHash ident;
|
||||||
if (!context.GetAddressBook ().GetIdentHash (operand, ident) || !m_CurrentDestination)
|
if (!context.GetAddressBook ().GetIdentHash (operand, ident))
|
||||||
{
|
{
|
||||||
SendReplyError ("Address Not found");
|
SendReplyError ("Address Not found");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (!m_CurrentDestination)
|
auto localDestination = m_CurrentDestination ? m_CurrentDestination->GetLocalDestination () : i2p::client::context.GetSharedLocalDestination ();
|
||||||
{
|
|
||||||
SendReplyError ("session not created");
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
auto localDestination = m_CurrentDestination->GetLocalDestination ();
|
|
||||||
auto leaseSet = localDestination->FindLeaseSet (ident);
|
auto leaseSet = localDestination->FindLeaseSet (ident);
|
||||||
if (leaseSet)
|
if (leaseSet)
|
||||||
SendReplyOK (leaseSet->GetIdentity ()->ToBase64 ().c_str ());
|
SendReplyOK (leaseSet->GetIdentity ()->ToBase64 ().c_str ());
|
||||||
|
Loading…
x
Reference in New Issue
Block a user