mirror of
https://github.com/Icinga/icinga2.git
synced 2025-04-08 17:05:25 +02:00
Increase limit for simultaneously connected anonymous TLS clients
This commit is contained in:
parent
8a172d39fe
commit
0dd168fe80
@ -1384,7 +1384,7 @@ double ApiListener::CalculateZoneLag(const Endpoint::Ptr& endpoint)
|
||||
bool ApiListener::AddAnonymousClient(const JsonRpcConnection::Ptr& aclient)
|
||||
{
|
||||
boost::mutex::scoped_lock lock(m_AnonymousClientsLock);
|
||||
if (m_AnonymousClients.size() > 25)
|
||||
if (m_AnonymousClients.size() > 100)
|
||||
return false;
|
||||
|
||||
m_AnonymousClients.insert(aclient);
|
||||
|
Loading…
x
Reference in New Issue
Block a user