mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-17 15:25:35 +00:00
Merge remote-tracking branch 'origin/master' into debian/buster
This commit is contained in:
commit
1d526ea667
@ -359,7 +359,7 @@ namespace llarp
|
||||
{
|
||||
m_Stats.totalDroppedTX++;
|
||||
m_Stats.totalInFlightTX--;
|
||||
LogWarn("Dropped unacked packet to ", m_RemoteAddr);
|
||||
LogDebug("Dropped unacked packet to ", m_RemoteAddr);
|
||||
itr->second.InformTimeout();
|
||||
itr = m_TXMsgs.erase(itr);
|
||||
}
|
||||
|
@ -214,7 +214,6 @@ namespace llarp
|
||||
DoCallback(callback, SendStatus::Success);
|
||||
else
|
||||
{
|
||||
LogWarn("Send outbound message handler dropped message");
|
||||
DoCallback(callback, SendStatus::Congestion);
|
||||
}
|
||||
});
|
||||
|
@ -78,13 +78,13 @@ namespace llarp
|
||||
auto path = m_PathSet->GetRandomPathByRouter(remoteIntro.router);
|
||||
if (!path)
|
||||
{
|
||||
LogError(m_Endpoint->Name(), " cannot encrypt and send: no path for intro ", remoteIntro);
|
||||
LogWarn(m_Endpoint->Name(), " cannot encrypt and send: no path for intro ", remoteIntro);
|
||||
return;
|
||||
}
|
||||
|
||||
if (!m_DataHandler->GetCachedSessionKeyFor(f->T, shared))
|
||||
{
|
||||
LogError(m_Endpoint->Name(), " has no cached session key on session T=", f->T);
|
||||
LogWarn(m_Endpoint->Name(), " has no cached session key on session T=", f->T);
|
||||
return;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user