Browse Source

cleanup unused destinations

pull/902/head
orignal 7 years ago
parent
commit
cded6206dc
  1. 14
      libi2pd_client/ClientContext.cpp

14
libi2pd_client/ClientContext.cpp

@ -38,6 +38,7 @@ namespace client @@ -38,6 +38,7 @@ namespace client
if (!m_SharedLocalDestination)
{
m_SharedLocalDestination = CreateNewLocalDestination (); // non-public, DSA
m_SharedLocalDestination->Acquire ();
m_Destinations[m_SharedLocalDestination->GetIdentity ()->GetIdentHash ()] = m_SharedLocalDestination;
m_SharedLocalDestination->Start ();
}
@ -246,6 +247,19 @@ namespace client @@ -246,6 +247,19 @@ namespace client
i2p::config::ParseConfig(config);
Stop();
Start();
// delete unused destinations
std::unique_lock<std::mutex> l(m_DestinationsMutex);
for (auto it = m_Destinations.begin (); it != m_Destinations.end ();)
{
auto dest = it->second;
if (dest->GetRefCounter () > 0) ++it; // skip
else
{
dest->Stop ();
it = m_Destinations.erase (it);
}
}
}
bool ClientContext::LoadPrivateKeys (i2p::data::PrivateKeys& keys, const std::string& filename, i2p::data::SigningKeyType sigType)

Loading…
Cancel
Save