]> jfr.im git - irc/rqf/shadowircd.git/blame - extensions/m_adminwall.c
Added tag shadowircd-6.3.0 for changeset 031bedf7e340
[irc/rqf/shadowircd.git] / extensions / m_adminwall.c
CommitLineData
aee6f890
JT
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 *
aee6f890
JT
24 */
25
26#include "stdinc.h"
27#include "client.h"
28#include "ircd.h"
13ae2f4b 29#include "match.h"
aee6f890
JT
30#include "numeric.h"
31#include "send.h"
32#include "s_user.h"
33#include "s_conf.h"
34#include "s_newconf.h"
35#include "msg.h"
36#include "parse.h"
37#include "modules.h"
38#include "s_serv.h"
39
40static int mo_adminwall(struct Client *, struct Client *, int, const char **);
41static int me_adminwall(struct Client *, struct Client *, int, const char **);
42
43struct Message adminwall_msgtab = {
44 "ADMINWALL", 0, 0, 0, MFLG_SLOW,
45 {mg_unreg, mg_not_oper, mg_ignore, mg_ignore, {me_adminwall, 2}, {mo_adminwall, 2}}
46};
47
48
49mapi_clist_av1 adminwall_clist[] = { &adminwall_msgtab, NULL };
50DECLARE_MODULE_AV1(adminwall, NULL, NULL, adminwall_clist, NULL, NULL, "$Revision: 20702 $");
51
52
53/*
54 * mo_adminwall (write to *all* admins currently online)
55 * parv[1] = message text
56 */
57
58static int
59mo_adminwall(struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
60{
61 if(!IsAdmin(source_p))
62 {
63 sendto_one(source_p, form_str(ERR_NOPRIVS),
64 me.name, source_p->name, "adminwall");
65 return 0;
66 }
67 sendto_wallops_flags(UMODE_ADMIN, source_p, "ADMINWALL - %s", parv[1]);
68 sendto_match_servs(source_p, "*", CAP_ENCAP, NOCAPS, "ENCAP * ADMINWALL :%s", parv[1]);
69 return 0;
70}
71
72static int
73me_adminwall(struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
74{
75 sendto_wallops_flags(UMODE_ADMIN, source_p, "ADMINWALL - %s", parv[1]);
76 return 0;
77}