]> jfr.im git - solanum.git/blame - extensions/m_adminwall.c
m_starttls: fix fucked-up merge
[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
760bafda
AC
40static int mo_adminwall(struct MsgBuf *, struct Client *, struct Client *, int, const char **);
41static int me_adminwall(struct MsgBuf *, struct Client *, struct Client *, int, const char **);
aee6f890
JT
42
43struct Message adminwall_msgtab = {
7baa37a9 44 "ADMINWALL", 0, 0, 0, 0,
aee6f890
JT
45 {mg_unreg, mg_not_oper, mg_ignore, mg_ignore, {me_adminwall, 2}, {mo_adminwall, 2}}
46};
55abcbb2 47
aee6f890
JT
48
49mapi_clist_av1 adminwall_clist[] = { &adminwall_msgtab, NULL };
04f832b7 50DECLARE_MODULE_AV2(adminwall, NULL, NULL, adminwall_clist, NULL, NULL, NULL, NULL, NULL);
aee6f890
JT
51
52
53/*
54 * mo_adminwall (write to *all* admins currently online)
55 * parv[1] = message text
56 */
57
58static int
760bafda 59mo_adminwall(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
55abcbb2 60{
aee6f890
JT
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;
55abcbb2 70}
aee6f890
JT
71
72static int
760bafda 73me_adminwall(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
55abcbb2 74{
aee6f890
JT
75 sendto_wallops_flags(UMODE_ADMIN, source_p, "ADMINWALL - %s", parv[1]);
76 return 0;
77}