]> jfr.im git - solanum.git/blame - extensions/m_adminwall.c
add help for `chm_regmsg`
[solanum.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
aee6f890
JT
23 */
24
25#include "stdinc.h"
26#include "client.h"
27#include "ircd.h"
4562c604 28#include "match.h"
aee6f890
JT
29#include "numeric.h"
30#include "send.h"
31#include "s_user.h"
32#include "s_conf.h"
33#include "s_newconf.h"
34#include "msg.h"
35#include "parse.h"
36#include "modules.h"
37#include "s_serv.h"
bd0d352f 38#include "messages.h"
aee6f890 39
eeabf33a
EM
40static const char adminwall_desc[] =
41 "Provides the ADMINWALL command to send a message to all administrators";
42
3c7d6fcc
EM
43static void mo_adminwall(struct MsgBuf *, struct Client *, struct Client *, int, const char **);
44static void me_adminwall(struct MsgBuf *, struct Client *, struct Client *, int, const char **);
aee6f890
JT
45
46struct Message adminwall_msgtab = {
7baa37a9 47 "ADMINWALL", 0, 0, 0, 0,
aee6f890
JT
48 {mg_unreg, mg_not_oper, mg_ignore, mg_ignore, {me_adminwall, 2}, {mo_adminwall, 2}}
49};
55abcbb2 50
aee6f890 51mapi_clist_av1 adminwall_clist[] = { &adminwall_msgtab, NULL };
02369fa7 52
02369fa7 53DECLARE_MODULE_AV2(adminwall, NULL, NULL, adminwall_clist, NULL, NULL, NULL, NULL, adminwall_desc);
aee6f890 54
aee6f890
JT
55/*
56 * mo_adminwall (write to *all* admins currently online)
57 * parv[1] = message text
58 */
59
3c7d6fcc 60static void
760bafda 61mo_adminwall(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
55abcbb2 62{
aee6f890
JT
63 if(!IsAdmin(source_p))
64 {
65 sendto_one(source_p, form_str(ERR_NOPRIVS),
66 me.name, source_p->name, "adminwall");
3c7d6fcc 67 return;
aee6f890
JT
68 }
69 sendto_wallops_flags(UMODE_ADMIN, source_p, "ADMINWALL - %s", parv[1]);
70 sendto_match_servs(source_p, "*", CAP_ENCAP, NOCAPS, "ENCAP * ADMINWALL :%s", parv[1]);
55abcbb2 71}
aee6f890 72
3c7d6fcc 73static void
760bafda 74me_adminwall(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
55abcbb2 75{
aee6f890 76 sendto_wallops_flags(UMODE_ADMIN, source_p, "ADMINWALL - %s", parv[1]);
aee6f890 77}