1
0
mirror of https://github.com/unrealircd/unrealircd.git synced 2026-07-02 19:13:13 +02:00
Files
unrealircd/src/modules/lusers.c
T
Bram Matthys 3592d8db3a Update name in first few lines of .c files.
Eg: src/modules/m_away.c is src/modules/away.c nowadays.
2019-09-13 15:46:20 +02:00

96 lines
2.8 KiB
C

/*
* IRC - Internet Relay Chat, src/modules/lusers.c
* (C) 2005 The UnrealIRCd Team
*
* See file AUTHORS in IRC package for additional names of
* the programmers.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 1, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#include "unrealircd.h"
CMD_FUNC(cmd_lusers);
#define MSG_LUSERS "LUSERS"
ModuleHeader MOD_HEADER
= {
"lusers",
"5.0",
"command /lusers",
"UnrealIRCd Team",
"unrealircd-5",
};
MOD_INIT()
{
CommandAdd(modinfo->handle, MSG_LUSERS, cmd_lusers, MAXPARA, M_USER|M_SERVER);
MARK_AS_OFFICIAL_MODULE(modinfo);
return MOD_SUCCESS;
}
MOD_LOAD()
{
return MOD_SUCCESS;
}
MOD_UNLOAD()
{
return MOD_SUCCESS;
}
/*
* parv[1] = server to query
*/
CMD_FUNC(cmd_lusers)
{
char flatmap;
if (hunt_server(cptr, sptr, recv_mtags, ":%s LUSERS :%s", 1, parc, parv) != HUNTED_ISME)
return 0;
flatmap = (FLAT_MAP && !ValidatePermissionsForPath("server:info:lusers",sptr,NULL,NULL,NULL)) ? 1 : 0;
/* Just to correct results ---Stskeeps */
if (ircstats.clients > ircstats.global_max)
ircstats.global_max = ircstats.clients;
if (ircstats.me_clients > ircstats.me_max)
ircstats.me_max = ircstats.me_clients;
sendnumeric(sptr, RPL_LUSERCLIENT,
ircstats.clients - ircstats.invisible, ircstats.invisible,
ircstats.servers);
if (ircstats.operators)
sendnumeric(sptr, RPL_LUSEROP, ircstats.operators);
if (ircstats.unknown)
sendnumeric(sptr, RPL_LUSERUNKNOWN, ircstats.unknown);
if (ircstats.channels)
sendnumeric(sptr, RPL_LUSERCHANNELS, ircstats.channels);
sendnumeric(sptr, RPL_LUSERME, ircstats.me_clients, flatmap ? 0 : ircstats.me_servers);
sendnumeric(sptr, RPL_LOCALUSERS, ircstats.me_clients, ircstats.me_max, ircstats.me_clients, ircstats.me_max);
sendnumeric(sptr, RPL_GLOBALUSERS, ircstats.clients, ircstats.global_max, ircstats.clients, ircstats.global_max);
if ((ircstats.me_clients + ircstats.me_servers) > max_connection_count)
{
max_connection_count =
ircstats.me_clients + ircstats.me_servers;
if (max_connection_count % 10 == 0) /* only send on even tens */
sendto_ops("New record on this server: %d connections (%d clients)",
max_connection_count, ircstats.me_clients);
}
return 0;
}