mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-01-31 04:44:13 +00:00
limit number of precalculated DH pairs
This commit is contained in:
parent
188987a8ff
commit
4d2f26b1cd
@ -101,8 +101,9 @@ namespace transport
|
|||||||
|
|
||||||
void DHKeysPairSupplier::Return (std::shared_ptr<i2p::crypto::DHKeys> pair)
|
void DHKeysPairSupplier::Return (std::shared_ptr<i2p::crypto::DHKeys> pair)
|
||||||
{
|
{
|
||||||
std::unique_lock<std::mutex> l(m_AcquiredMutex);
|
std::unique_lock<std::mutex>l(m_AcquiredMutex);
|
||||||
m_Queue.push (pair);
|
if ((int)m_Queue.size () < 2*m_QueueSize)
|
||||||
|
m_Queue.push (pair);
|
||||||
}
|
}
|
||||||
|
|
||||||
Transports transports;
|
Transports transports;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user