mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-03-07 06:09:42 +00:00
fixed another cases for #651
This commit is contained in:
8
BOB.cpp
8
BOB.cpp
@@ -437,7 +437,10 @@ namespace client
|
|||||||
void BOBCommandSession::GetkeysCommandHandler (const char * operand, size_t len)
|
void BOBCommandSession::GetkeysCommandHandler (const char * operand, size_t len)
|
||||||
{
|
{
|
||||||
LogPrint (eLogDebug, "BOB: getkeys");
|
LogPrint (eLogDebug, "BOB: getkeys");
|
||||||
|
if (m_Keys.GetPublic ()) // keys are set ?
|
||||||
SendReplyOK (m_Keys.ToBase64 ().c_str ());
|
SendReplyOK (m_Keys.ToBase64 ().c_str ());
|
||||||
|
else
|
||||||
|
SendReplyError ("keys are not set");
|
||||||
}
|
}
|
||||||
|
|
||||||
void BOBCommandSession::GetdestCommandHandler (const char * operand, size_t len)
|
void BOBCommandSession::GetdestCommandHandler (const char * operand, size_t len)
|
||||||
@@ -506,6 +509,11 @@ namespace client
|
|||||||
SendReplyError ("Address Not found");
|
SendReplyError ("Address Not found");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
if (!m_CurrentDestination)
|
||||||
|
{
|
||||||
|
SendReplyError ("session not created");
|
||||||
|
return;
|
||||||
|
}
|
||||||
auto localDestination = m_CurrentDestination->GetLocalDestination ();
|
auto localDestination = m_CurrentDestination->GetLocalDestination ();
|
||||||
auto leaseSet = localDestination->FindLeaseSet (ident);
|
auto leaseSet = localDestination->FindLeaseSet (ident);
|
||||||
if (leaseSet)
|
if (leaseSet)
|
||||||
|
|||||||
Reference in New Issue
Block a user