]> jfr.im git - irc/rqf/shadowircd.git/blame - modules/m_locops.c
Fix a quick compile warning.
[irc/rqf/shadowircd.git] / modules / m_locops.c
CommitLineData
212380e3 1/*
2 * ircd-ratbox: A slightly useful ircd.
3 * m_locops.c: Sends a message to all operators on the local server.
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-2005 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 *
212380e3 24 */
25
26#include "stdinc.h"
27#include "client.h"
28#include "ircd.h"
13ae2f4b 29#include "match.h"
212380e3 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 "hash.h"
36#include "msg.h"
37#include "parse.h"
38#include "modules.h"
39#include "s_serv.h"
40
41static int m_locops(struct Client *, struct Client *, int, const char **);
42static int ms_locops(struct Client *, struct Client *, int, const char **);
43static int me_locops(struct Client *, struct Client *, int, const char **);
44
45struct Message locops_msgtab = {
46 "LOCOPS", 0, 0, 0, MFLG_SLOW,
47 {mg_unreg, mg_not_oper, {ms_locops, 3}, mg_ignore, {me_locops, 2}, {m_locops, 2}}
48};
49
50mapi_clist_av1 locops_clist[] = { &locops_msgtab, NULL };
51DECLARE_MODULE_AV1(locops, NULL, NULL, locops_clist, NULL, NULL, "$Revision: 254 $");
52
53/*
54 * m_locops - LOCOPS message handler
55 * (write to *all* local opers currently online)
212380e3 56 * parv[1] = message text
57 */
58static int
59m_locops(struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
60{
61 sendto_wallops_flags(UMODE_LOCOPS, source_p, "LOCOPS - %s", parv[1]);
62
08d11e34 63 if(rb_dlink_list_length(&cluster_conf_list) > 0)
212380e3 64 cluster_generic(source_p, "LOCOPS", SHARED_LOCOPS, CAP_CLUSTER,
65 ":%s", parv[1]);
66
67 return 0;
68}
69
70static int
71ms_locops(struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
72{
77f3c1f4
JT
73 /* source_p parv[1] parv[2]
74 * oper target serv message
212380e3 75 */
76 propagate_generic(source_p, "LOCOPS", parv[1], CAP_CLUSTER,
77 ":%s", parv[2]);
78
79 if(!match(parv[1], me.name))
80 return 0;
81
c88cdb00 82 if(find_shared_conf("*", "*", source_p->servptr->name, SHARED_LOCOPS))
212380e3 83 sendto_wallops_flags(UMODE_LOCOPS, source_p, "SLOCOPS - %s", parv[2]);
84
85 return 0;
86}
87
88static int
89me_locops(struct Client *client_p, struct Client *source_p,
90 int parc, const char *parv[])
91{
92 if(!IsPerson(source_p))
93 return 0;
94
c88cdb00 95 if(find_shared_conf("*", "*", source_p->servptr->name, SHARED_LOCOPS))
212380e3 96 sendto_wallops_flags(UMODE_LOCOPS, source_p, "SLOCOPS - %s", parv[1]);
97
98 return 0;
99}
100