]> jfr.im git - irc/rqf/shadowircd.git/blob - extensions/m_adminwall.c
BOPM/TCM do not need the ability to global kill, so remove it from server_bot
[irc/rqf/shadowircd.git] / extensions / m_adminwall.c
1 /*
2 * ircd-ratbox: A slightly useful ircd.
3 * m_adminwall.c: Sends a message to all admins
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-2007 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_wallops.c 20702 2005-08-31 20:59:02Z leeh $
25 */
26
27 #include "stdinc.h"
28 #include "client.h"
29 #include "ircd.h"
30 #include "match.h"
31 #include "numeric.h"
32 #include "send.h"
33 #include "s_user.h"
34 #include "s_conf.h"
35 #include "s_newconf.h"
36 #include "msg.h"
37 #include "parse.h"
38 #include "modules.h"
39 #include "s_serv.h"
40
41 static int mo_adminwall(struct Client *, struct Client *, int, const char **);
42 static int me_adminwall(struct Client *, struct Client *, int, const char **);
43
44 struct Message adminwall_msgtab = {
45 "ADMINWALL", 0, 0, 0, MFLG_SLOW,
46 {mg_unreg, mg_not_oper, mg_ignore, mg_ignore, {me_adminwall, 2}, {mo_adminwall, 2}}
47 };
48
49
50 mapi_clist_av1 adminwall_clist[] = { &adminwall_msgtab, NULL };
51 DECLARE_MODULE_AV1(adminwall, NULL, NULL, adminwall_clist, NULL, NULL, "$Revision: 20702 $");
52
53
54 /*
55 * mo_adminwall (write to *all* admins currently online)
56 * parv[1] = message text
57 */
58
59 static int
60 mo_adminwall(struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
61 {
62 if(!IsAdmin(source_p))
63 {
64 sendto_one(source_p, form_str(ERR_NOPRIVS),
65 me.name, source_p->name, "adminwall");
66 return 0;
67 }
68 sendto_wallops_flags(UMODE_ADMIN, source_p, "ADMINWALL - %s", parv[1]);
69 sendto_match_servs(source_p, "*", CAP_ENCAP, NOCAPS, "ENCAP * ADMINWALL :%s", parv[1]);
70 return 0;
71 }
72
73 static int
74 me_adminwall(struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
75 {
76 sendto_wallops_flags(UMODE_ADMIN, source_p, "ADMINWALL - %s", parv[1]);
77 return 0;
78 }