From 4cc992f6c20354eef88b7652f268591daccb1b20 Mon Sep 17 00:00:00 2001 From: Peter Powell Date: Sat, 28 Dec 2019 17:08:06 +0100 Subject: Ignore clients on ulined servers when reporting stats in LUSERS. --- src/users.cpp | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/users.cpp') diff --git a/src/users.cpp b/src/users.cpp index 6c58f0617..82f2545f4 100644 --- a/src/users.cpp +++ b/src/users.cpp @@ -78,6 +78,9 @@ User::User(const std::string& uid, Server* srv, UserType type) ServerInstance->Logs->Log("USERS", LOG_DEBUG, "New UUID for user: %s", uuid.c_str()); + if (srv->IsULine()) + ServerInstance->Users->uline_count++; + // Do not insert FakeUsers into the uuidlist so FindUUID() won't return them which is the desired behavior if (type != USERTYPE_SERVER) { @@ -339,6 +342,9 @@ CullResult User::cull() if (client_sa.family() != AF_UNSPEC) ServerInstance->Users->RemoveCloneCounts(this); + if (server->IsULine() && ServerInstance->Users->uline_count) + ServerInstance->Users->uline_count--; + return Extensible::cull(); } -- cgit v1.3.1-10-gc9f91