Skip to content

Commit

Permalink
delete session by hash from table if expired or terminated
Browse files Browse the repository at this point in the history
  • Loading branch information
orignal committed Sep 25, 2024
1 parent 6776324 commit 98669ef
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
12 changes: 10 additions & 2 deletions libi2pd/SSU2.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -515,11 +515,19 @@ namespace transport
return m_PendingOutgoingSessions.emplace (session->GetRemoteEndpoint (), session).second;
}

std::shared_ptr<SSU2Session> SSU2Server::FindSession (const i2p::data::IdentHash& ident) const
std::shared_ptr<SSU2Session> SSU2Server::FindSession (const i2p::data::IdentHash& ident)
{
auto it = m_SessionsByRouterHash.find (ident);
if (it != m_SessionsByRouterHash.end ())
return it->second.lock ();
{
if (!it->second.expired ())
{
auto s = it->second.lock ();
if (s && s->GetState () != eSSU2SessionStateTerminated)
return s;
}
m_SessionsByRouterHash.erase (it);
}
return nullptr;
}

Expand Down
2 changes: 1 addition & 1 deletion libi2pd/SSU2.h
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ namespace transport
void AddSessionByRouterHash (std::shared_ptr<SSU2Session> session);
bool AddPendingOutgoingSession (std::shared_ptr<SSU2Session> session);
void RemovePendingOutgoingSession (const boost::asio::ip::udp::endpoint& ep);
std::shared_ptr<SSU2Session> FindSession (const i2p::data::IdentHash& ident) const;
std::shared_ptr<SSU2Session> FindSession (const i2p::data::IdentHash& ident);
std::shared_ptr<SSU2Session> FindPendingOutgoingSession (const boost::asio::ip::udp::endpoint& ep) const;
std::shared_ptr<SSU2Session> GetRandomPeerTestSession (i2p::data::RouterInfo::CompatibleTransports remoteTransports,
const i2p::data::IdentHash& excluded);
Expand Down

0 comments on commit 98669ef

Please sign in to comment.