ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/ircd-hybrid/modules/m_lusers.c
Revision: 609
Committed: Tue May 16 10:42:05 2006 UTC (20 years, 2 months ago) by michael
Content type: text/x-csrc
File size: 2866 byte(s)
Log Message:
- Killed the client_p parameter of hunt_server() as suggested
  by adx some time ago.

File Contents

# User Rev Content
1 adx 30 /*
2     * ircd-hybrid: an advanced Internet Relay Chat Daemon(ircd).
3     * m_lusers.c: Sends user statistics.
4     *
5     * Copyright (C) 2002 by the past and present ircd coders, and others.
6     *
7     * This program is free software; you can redistribute it and/or modify
8     * it under the terms of the GNU General Public License as published by
9     * the Free Software Foundation; either version 2 of the License, or
10     * (at your option) any later version.
11     *
12     * This program is distributed in the hope that it will be useful,
13     * but WITHOUT ANY WARRANTY; without even the implied warranty of
14     * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15     * GNU General Public License for more details.
16     *
17     * You should have received a copy of the GNU General Public License
18     * along with this program; if not, write to the Free Software
19     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
20     * USA
21     *
22 knight 31 * $Id$
23 adx 30 */
24    
25     #include "stdinc.h"
26     #include "handlers.h"
27     #include "client.h"
28     #include "ircd.h"
29     #include "numeric.h"
30     #include "s_serv.h" /* hunt_server */
31     #include "s_user.h" /* show_lusers */
32     #include "send.h"
33     #include "s_conf.h"
34     #include "msg.h"
35     #include "parse.h"
36 db 470 #include "conf/modules.h"
37 adx 30
38 michael 399 static void m_lusers(struct Client *, struct Client *, int, char *[]);
39     static void ms_lusers(struct Client *, struct Client *, int, char *[]);
40 adx 30
41     struct Message lusers_msgtab = {
42     "LUSERS", 0, 0, 0, 0, MFLG_SLOW, 0,
43     {m_unregistered, m_lusers, ms_lusers, m_ignore, ms_lusers, m_ignore}
44     };
45 michael 399
46 adx 442 INIT_MODULE(m_lusers, "$Revision$")
47 adx 30 {
48     mod_add_cmd(&lusers_msgtab);
49     }
50    
51 adx 442 CLEANUP_MODULE
52 adx 30 {
53     mod_del_cmd(&lusers_msgtab);
54     }
55    
56     /* m_lusers - LUSERS message handler
57     * parv[0] = sender
58     * parv[1] = host/server mask.
59     * parv[2] = server to query
60     *
61     * 199970918 JRL hacked to ignore parv[1] completely and require parc > 3
62     * to cause a force
63     *
64     * 2003 hacked parv[1] back in, by request of efnet admins/opers -Dianora
65     */
66     static void
67     m_lusers(struct Client *client_p, struct Client *source_p,
68     int parc, char *parv[])
69     {
70     static time_t last_used = 0;
71    
72 adx 270 if ((last_used + ConfigFileEntry.pace_wait_simple) > CurrentTime)
73 adx 30 {
74 michael 399 sendto_one(source_p, form_str(RPL_LOAD2HI), me.name, parv[0]);
75 adx 30 return;
76     }
77    
78 michael 399 last_used = CurrentTime;
79    
80 adx 30 if (parc > 2 && !ConfigFileEntry.disable_remote)
81 michael 609 if (hunt_server(source_p, ":%s LUSERS %s :%s",
82 michael 399 2, parc, parv) != HUNTED_ISME)
83 adx 30 return;
84    
85     show_lusers(source_p);
86     }
87    
88     /* ms_lusers - LUSERS message handler for servers and opers
89     * parv[0] = sender
90     * parv[1] = host/server mask.
91     * parv[2] = server to query
92     */
93     static void
94     ms_lusers(struct Client *client_p, struct Client *source_p,
95     int parc, char *parv[])
96     {
97     if (parc > 2)
98 michael 609 if (hunt_server(source_p, ":%s LUSERS %s :%s",
99     2, parc, parv) != HUNTED_ISME)
100 adx 30 return;
101    
102 adx 270 if (IsClient(source_p))
103 adx 30 show_lusers(source_p);
104     }

Properties

Name Value
svn:eol-style native
svn:keywords Id Revision