summaryrefslogtreecommitdiff
path: root/src/usermanager.cpp
diff options
context:
space:
mode:
authorattilamolnar <attilamolnar@hush.com>2013-05-16 20:51:12 +0200
committerattilamolnar <attilamolnar@hush.com>2013-05-16 20:51:12 +0200
commitbb962f92ace6eb23c66c5fccee01f825c22363c3 (patch)
tree9a9fd3ca343fb685477c2c45668211236bb7ed1a /src/usermanager.cpp
parent0a8b0d317ed4adc43185c1b791bcf752115dc58e (diff)
Workaround for std::list::size() having linear complexity on some implementations
Diffstat (limited to 'src/usermanager.cpp')
-rw-r--r--src/usermanager.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/usermanager.cpp b/src/usermanager.cpp
index e3ddfc9f2..670add777 100644
--- a/src/usermanager.cpp
+++ b/src/usermanager.cpp
@@ -74,6 +74,7 @@ void UserManager::AddUser(int socket, ListenSocket* via, irc::sockets::sockaddrs
ServerInstance->Users->AddGlobalClone(New);
New->localuseriter = this->local_users.insert(local_users.end(), New);
+ local_count++;
if ((this->local_users.size() > ServerInstance->Config->SoftLimit) || (this->local_users.size() >= (unsigned int)ServerInstance->SE->GetMaxFds()))
{
@@ -332,7 +333,7 @@ unsigned int UserManager::UnregisteredUserCount()
unsigned int UserManager::LocalUserCount()
{
/* Doesnt count unregistered clients */
- return (this->local_users.size() - this->UnregisteredUserCount());
+ return (this->local_count - this->UnregisteredUserCount());
}
void UserManager::ServerNoticeAll(const char* text, ...)