]> jfr.im git - irc/rqf/shadowircd.git/blob - modules/m_lusers.c
Make m_resv.so build again.
[irc/rqf/shadowircd.git] / modules / m_lusers.c
1 /*
2 * ircd-ratbox: A slightly useful ircd.
3 * m_lusers.c: Sends user statistics.
4 *
5 * Copyright (C) 1990 Jarkko Oikarinen and University of Oulu, Co Center
6 * Copyright (C) 1996-2002 Hybrid Development Team
7 * Copyright (C) 2002-2005 ircd-ratbox development team
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
22 * USA
23 *
24 * $Id: m_lusers.c 254 2005-09-21 23:35:12Z nenolod $
25 */
26
27 #include "stdinc.h"
28 #include "client.h"
29 #include "ircd.h"
30 #include "numeric.h"
31 #include "s_serv.h" /* hunt_server */
32 #include "s_user.h" /* show_lusers */
33 #include "send.h"
34 #include "s_conf.h"
35 #include "msg.h"
36 #include "parse.h"
37 #include "modules.h"
38
39 static int m_lusers(struct Client *, struct Client *, int, const char **);
40 static int ms_lusers(struct Client *, struct Client *, int, const char **);
41
42 struct Message lusers_msgtab = {
43 "LUSERS", 0, 0, 0, MFLG_SLOW,
44 {mg_unreg, {m_lusers, 0}, {ms_lusers, 0}, mg_ignore, mg_ignore, {ms_lusers, 0}}
45 };
46
47 mapi_clist_av1 lusers_clist[] = { &lusers_msgtab, NULL };
48 DECLARE_MODULE_AV1(lusers, NULL, NULL, lusers_clist, NULL, NULL, "$Revision: 254 $");
49
50 /*
51 * m_lusers - LUSERS message handler
52 * parv[0] = sender
53 * parv[1] = host/server mask.
54 * parv[2] = server to query
55 *
56 * 199970918 JRL hacked to ignore parv[1] completely and require parc > 3
57 * to cause a force
58 */
59 static int
60 m_lusers(struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
61 {
62 static time_t last_used = 0;
63
64 if (parc > 2)
65 {
66 if((last_used + ConfigFileEntry.pace_wait) > rb_current_time())
67 {
68 /* safe enough to give this on a local connect only */
69 sendto_one(source_p, form_str(RPL_LOAD2HI),
70 me.name, source_p->name, "LUSERS");
71 return 0;
72 }
73 else
74 last_used = rb_current_time();
75
76 if(hunt_server(client_p, source_p, ":%s LUSERS %s :%s", 2, parc, parv) !=
77 HUNTED_ISME)
78 return 0;
79 }
80
81 show_lusers(source_p);
82
83 return 0;
84 }
85
86 /*
87 * ms_lusers - LUSERS message handler for servers and opers
88 * parv[0] = sender
89 * parv[1] = host/server mask.
90 * parv[2] = server to query
91 *
92 * 199970918 JRL hacked to ignore parv[1] completely and require parc > 3
93 * to cause a force
94 */
95 static int
96 ms_lusers(struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
97 {
98 if(parc > 2)
99 {
100 if(hunt_server(client_p, source_p, ":%s LUSERS %s :%s", 2, parc, parv)
101 != HUNTED_ISME)
102 return 0;
103 }
104
105 show_lusers(source_p);
106
107 return 0;
108 }