ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/ircd-hybrid/trunk/modules/m_users.c
Revision: 2820
Committed: Wed Jan 15 23:10:26 2014 UTC (11 years, 7 months ago) by michael
Content type: text/x-csrc
File size: 3357 byte(s)
Log Message:
- Clean up all files in modules/ (fixed indentation, removed whitespaces/tabs)
- Fixed copyright years
- Made module handlers int type for later use

File Contents

# Content
1 /*
2 * ircd-hybrid: an advanced, lightweight Internet Relay Chat Daemon (ircd)
3 *
4 * Copyright (c) 1997-2014 ircd-hybrid development team
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
19 * USA
20 */
21
22 /*! \file m_users.c
23 * \brief Includes required functions for processing the USERS command.
24 * \version $Id$
25 */
26
27 #include "stdinc.h"
28 #include "client.h"
29 #include "ircd.h"
30 #include "numeric.h"
31 #include "s_serv.h"
32 #include "conf.h"
33 #include "send.h"
34 #include "parse.h"
35 #include "modules.h"
36
37
38 /*
39 * m_users
40 * parv[0] = sender prefix
41 * parv[1] = servername
42 */
43 static int
44 m_users(struct Client *client_p, struct Client *source_p,
45 int parc, char *parv[])
46 {
47 static time_t last_used = 0;
48
49 if (last_used + ConfigFileEntry.pace_wait_simple > CurrentTime)
50 {
51 sendto_one(source_p, form_str(RPL_LOAD2HI),
52 me.name, source_p->name);
53 return 0;
54 }
55
56 last_used = CurrentTime;
57
58 if (!ConfigServerHide.disable_remote_commands)
59 if (hunt_server(client_p, source_p, ":%s USERS :%s", 1,
60 parc, parv) != HUNTED_ISME)
61 return 0;
62
63 sendto_one(source_p, form_str(RPL_LOCALUSERS), me.name, source_p->name,
64 ConfigServerHide.hide_servers ? Count.total : Count.local,
65 ConfigServerHide.hide_servers ? Count.max_tot : Count.max_loc);
66 sendto_one(source_p, form_str(RPL_GLOBALUSERS), me.name, source_p->name,
67 Count.total, Count.max_tot);
68 return 0;
69 }
70
71 /*
72 * mo_users
73 * parv[0] = sender prefix
74 * parv[1] = servername
75 */
76 static int
77 mo_users(struct Client *client_p, struct Client *source_p,
78 int parc, char *parv[])
79 {
80 if (hunt_server(client_p, source_p, ":%s USERS :%s", 1,
81 parc, parv) != HUNTED_ISME)
82 return 0;
83
84 if (!HasUMode(source_p, UMODE_OPER) && ConfigServerHide.hide_servers)
85 sendto_one(source_p, form_str(RPL_LOCALUSERS), me.name, source_p->name,
86 Count.total, Count.max_tot);
87 else
88 sendto_one(source_p, form_str(RPL_LOCALUSERS), me.name, source_p->name,
89 Count.local, Count.max_loc);
90
91 sendto_one(source_p, form_str(RPL_GLOBALUSERS), me.name, source_p->name,
92 Count.total, Count.max_tot);
93 return 0;
94 }
95
96 static struct Message users_msgtab =
97 {
98 "USERS", 0, 0, 0, MAXPARA, MFLG_SLOW, 0,
99 { m_unregistered, m_users, mo_users, m_ignore, mo_users, m_ignore }
100 };
101
102 static void
103 module_init(void)
104 {
105 mod_add_cmd(&users_msgtab);
106 }
107
108 static void
109 module_exit(void)
110 {
111 mod_del_cmd(&users_msgtab);
112 }
113
114 struct module module_entry =
115 {
116 .node = { NULL, NULL, NULL },
117 .name = NULL,
118 .version = "$Revision$",
119 .handle = NULL,
120 .modinit = module_init,
121 .modexit = module_exit,
122 .flags = 0
123 };

Properties

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