ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/ircd-hybrid-8/contrib/m_classlist.c
Revision: 1268
Committed: Wed Jan 18 08:20:31 2012 UTC (12 years, 2 months ago) by michael
Content type: text/x-csrc
File size: 2578 byte(s)
Log Message:
- get contributed modules to work with new module api

File Contents

# User Rev Content
1 adx 30 /*
2     * ircd-hybrid: an advanced Internet Relay Chat Daemon(ircd).
3     * m_ctrace.c: Shows totals of classes
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 michael 1011 #include "list.h"
27 adx 30 #include "client.h"
28     #include "irc_string.h"
29     #include "ircd.h"
30     #include "numeric.h"
31     #include "send.h"
32     #include "s_serv.h"
33     #include "s_conf.h"
34     #include "parse.h"
35     #include "modules.h"
36    
37    
38     /* mo_classlist()
39     *
40     * parv[0] = sender prefix
41     * parv[1] = classname
42     */
43     static void
44     mo_classlist(struct Client *client_p, struct Client *source_p,
45     int parc, char *parv[])
46     {
47     const dlink_node *ptr = NULL;
48     int found_class = 0;
49    
50     if (EmptyString(parv[1]))
51     {
52     sendto_one(source_p, form_str(ERR_NEEDMOREPARAMS),
53     me.name, source_p->name, "CLASSLIST");
54     return;
55     }
56    
57     DLINK_FOREACH(ptr, class_items.head)
58     {
59     struct ConfItem *conf = ptr->data;
60    
61     if (match(parv[1], conf->name))
62     {
63     const struct ClassItem *aclass = map_to_conf(conf);
64     sendto_one(source_p, ":%s NOTICE %s :%s %d",
65     me.name, source_p->name, conf->name,
66     CurrUserCount(aclass));
67     found_class = 1;
68     }
69     }
70    
71     if (!found_class)
72     sendto_one(source_p, ":%s NOTICE %s :No Class found matching %s",
73     me.name, source_p->name, parv[1]);
74     }
75 michael 1268
76     static struct Message classlist_msgtab = {
77     "CLASSLIST", 0, 0, 2, MAXPARA, MFLG_SLOW, 0,
78     {m_unregistered, m_not_oper, m_ignore, m_ignore, mo_classlist, m_ignore}
79     };
80    
81     static void
82     module_init(void)
83     {
84     mod_add_cmd(&classlist_msgtab);
85     }
86    
87     static void
88     module_exit(void)
89     {
90     mod_del_cmd(&classlist_msgtab);
91     }
92    
93     struct module module_entry = {
94     .node = { NULL, NULL, NULL },
95     .name = NULL,
96     .version = "$Revision$",
97     .handle = NULL,
98     .modinit = module_init,
99     .modexit = module_exit,
100     .flags = 0
101     };

Properties

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