diff options
author | Attila Molnar <attilamolnar@hush.com> | 2014-06-07 13:30:14 +0200 |
---|---|---|
committer | Attila Molnar <attilamolnar@hush.com> | 2014-06-07 13:30:14 +0200 |
commit | 30fec322809582f91be70cc1bb16c9678180db76 (patch) | |
tree | 464446f79af6259b4e280514eac25bea7777b014 /src/usermanager.cpp | |
parent | 4d7c590bb6a937c4c412241ae67b9fc74083b365 (diff) |
Relax fd bounds checking
We can cope with fds greater than SocketEngine::GetMaxFds() since 3752b3f59d5216d7dc6221a361efc76b9ad2273d
Diffstat (limited to 'src/usermanager.cpp')
-rw-r--r-- | src/usermanager.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/usermanager.cpp b/src/usermanager.cpp index 5dc410fff..3c234f13f 100644 --- a/src/usermanager.cpp +++ b/src/usermanager.cpp @@ -77,7 +77,7 @@ void UserManager::AddUser(int socket, ListenSocket* via, irc::sockets::sockaddrs this->local_users.push_front(New); - if ((this->local_users.size() > ServerInstance->Config->SoftLimit) || (this->local_users.size() >= (unsigned int)SocketEngine::GetMaxFds())) + if (this->local_users.size() > ServerInstance->Config->SoftLimit) { ServerInstance->SNO->WriteToSnoMask('a', "Warning: softlimit value has been reached: %d clients", ServerInstance->Config->SoftLimit); this->QuitUser(New,"No more connections allowed"); |