mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-01-31 13:14:13 +00:00
fixed potential race condition with tunnel tests
This commit is contained in:
parent
a284c85153
commit
3311fe62bb
@ -102,7 +102,10 @@ namespace tunnel
|
|||||||
it->SetTunnelPool (nullptr);
|
it->SetTunnelPool (nullptr);
|
||||||
m_OutboundTunnels.clear ();
|
m_OutboundTunnels.clear ();
|
||||||
}
|
}
|
||||||
m_Tests.clear ();
|
{
|
||||||
|
std::unique_lock<std::mutex> l(m_TestsMutex);
|
||||||
|
m_Tests.clear ();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
bool TunnelPool::Reconfigure(int inHops, int outHops, int inQuant, int outQuant)
|
bool TunnelPool::Reconfigure(int inHops, int outHops, int inQuant, int outQuant)
|
||||||
@ -145,8 +148,11 @@ namespace tunnel
|
|||||||
if (expiredTunnel)
|
if (expiredTunnel)
|
||||||
{
|
{
|
||||||
expiredTunnel->SetTunnelPool (nullptr);
|
expiredTunnel->SetTunnelPool (nullptr);
|
||||||
for (auto& it: m_Tests)
|
{
|
||||||
if (it.second.second == expiredTunnel) it.second.second = nullptr;
|
std::unique_lock<std::mutex> l(m_TestsMutex);
|
||||||
|
for (auto& it: m_Tests)
|
||||||
|
if (it.second.second == expiredTunnel) it.second.second = nullptr;
|
||||||
|
}
|
||||||
|
|
||||||
std::unique_lock<std::mutex> l(m_InboundTunnelsMutex);
|
std::unique_lock<std::mutex> l(m_InboundTunnelsMutex);
|
||||||
m_InboundTunnels.erase (expiredTunnel);
|
m_InboundTunnels.erase (expiredTunnel);
|
||||||
@ -167,8 +173,11 @@ namespace tunnel
|
|||||||
if (expiredTunnel)
|
if (expiredTunnel)
|
||||||
{
|
{
|
||||||
expiredTunnel->SetTunnelPool (nullptr);
|
expiredTunnel->SetTunnelPool (nullptr);
|
||||||
for (auto& it: m_Tests)
|
{
|
||||||
if (it.second.first == expiredTunnel) it.second.first = nullptr;
|
std::unique_lock<std::mutex> l(m_TestsMutex);
|
||||||
|
for (auto& it: m_Tests)
|
||||||
|
if (it.second.first == expiredTunnel) it.second.first = nullptr;
|
||||||
|
}
|
||||||
|
|
||||||
std::unique_lock<std::mutex> l(m_OutboundTunnelsMutex);
|
std::unique_lock<std::mutex> l(m_OutboundTunnelsMutex);
|
||||||
m_OutboundTunnels.erase (expiredTunnel);
|
m_OutboundTunnels.erase (expiredTunnel);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user