1 |
adx |
30 |
/* |
2 |
michael |
2820 |
* ircd-hybrid: an advanced, lightweight Internet Relay Chat Daemon (ircd) |
3 |
adx |
30 |
* |
4 |
michael |
2820 |
* Copyright (c) 1997-2014 ircd-hybrid development team |
5 |
adx |
30 |
* |
6 |
|
|
* This program is free software; you can redistribute it and/or modify |
7 |
|
|
* it under the terms of the GNU General Public License as published by |
8 |
|
|
* the Free Software Foundation; either version 2 of the License, or |
9 |
|
|
* (at your option) any later version. |
10 |
|
|
* |
11 |
|
|
* This program is distributed in the hope that it will be useful, |
12 |
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
13 |
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
14 |
|
|
* GNU General Public License for more details. |
15 |
|
|
* |
16 |
|
|
* You should have received a copy of the GNU General Public License |
17 |
|
|
* along with this program; if not, write to the Free Software |
18 |
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 |
19 |
|
|
* USA |
20 |
|
|
*/ |
21 |
|
|
|
22 |
michael |
2820 |
/*! \file m_wallops.c |
23 |
|
|
* \brief Includes required functions for processing the WALLOPS command. |
24 |
|
|
* \version $Id$ |
25 |
|
|
*/ |
26 |
|
|
|
27 |
adx |
30 |
#include "stdinc.h" |
28 |
|
|
#include "client.h" |
29 |
|
|
#include "ircd.h" |
30 |
|
|
#include "irc_string.h" |
31 |
|
|
#include "numeric.h" |
32 |
|
|
#include "send.h" |
33 |
|
|
#include "parse.h" |
34 |
|
|
#include "modules.h" |
35 |
|
|
#include "s_serv.h" |
36 |
|
|
|
37 |
|
|
|
38 |
|
|
/* |
39 |
|
|
* mo_wallops (write to *all* opers currently online) |
40 |
michael |
3096 |
* parv[0] = command |
41 |
adx |
30 |
* parv[1] = message text |
42 |
|
|
*/ |
43 |
michael |
2820 |
static int |
44 |
michael |
3156 |
mo_wallops(struct Client *source_p, int parc, char *parv[]) |
45 |
michael |
2820 |
{ |
46 |
adx |
30 |
const char *message = parv[1]; |
47 |
|
|
|
48 |
michael |
2038 |
if (!HasOFlag(source_p, OPER_FLAG_WALLOPS)) |
49 |
|
|
{ |
50 |
michael |
3109 |
sendto_one_numeric(source_p, &me, ERR_NOPRIVS, "wallops"); |
51 |
michael |
2820 |
return 0; |
52 |
michael |
2038 |
} |
53 |
|
|
|
54 |
adx |
30 |
if (EmptyString(message)) |
55 |
|
|
{ |
56 |
michael |
3109 |
sendto_one_numeric(source_p, &me, ERR_NEEDMOREPARAMS, "WALLOPS"); |
57 |
michael |
2820 |
return 0; |
58 |
adx |
30 |
} |
59 |
|
|
|
60 |
|
|
sendto_wallops_flags(UMODE_OPERWALL, source_p, "OPERWALL - %s", message); |
61 |
michael |
3156 |
sendto_server(source_p, NOCAPS, NOCAPS, ":%s WALLOPS :%s", |
62 |
michael |
3135 |
ID(source_p), message); |
63 |
michael |
2820 |
return 0; |
64 |
adx |
30 |
} |
65 |
|
|
|
66 |
|
|
/* |
67 |
|
|
* ms_wallops (write to *all* opers currently online) |
68 |
michael |
3096 |
* parv[0] = command |
69 |
adx |
30 |
* parv[1] = message text |
70 |
|
|
*/ |
71 |
michael |
2820 |
static int |
72 |
michael |
3156 |
ms_wallops(struct Client *source_p, int parc, char *parv[]) |
73 |
michael |
2820 |
{ |
74 |
adx |
30 |
const char *message = parv[1]; |
75 |
|
|
|
76 |
|
|
if (EmptyString(message)) |
77 |
michael |
2820 |
return 0; |
78 |
adx |
30 |
|
79 |
|
|
if (IsClient(source_p)) |
80 |
|
|
sendto_wallops_flags(UMODE_OPERWALL, source_p, "OPERWALL - %s", message); |
81 |
|
|
else |
82 |
michael |
2820 |
sendto_wallops_flags(UMODE_WALLOP, source_p, "%s", message); |
83 |
adx |
30 |
|
84 |
michael |
3156 |
sendto_server(source_p, NOCAPS, NOCAPS, ":%s WALLOPS :%s", |
85 |
michael |
3135 |
ID(source_p), message); |
86 |
michael |
2820 |
return 0; |
87 |
adx |
30 |
} |
88 |
|
|
|
89 |
michael |
2820 |
static struct Message wallops_msgtab = |
90 |
|
|
{ |
91 |
michael |
1230 |
"WALLOPS", 0, 0, 2, MAXPARA, MFLG_SLOW, 0, |
92 |
michael |
2820 |
{ m_unregistered, m_not_oper, ms_wallops, m_ignore, mo_wallops, m_ignore } |
93 |
michael |
1230 |
}; |
94 |
|
|
|
95 |
|
|
static void |
96 |
|
|
module_init(void) |
97 |
|
|
{ |
98 |
|
|
mod_add_cmd(&wallops_msgtab); |
99 |
|
|
} |
100 |
|
|
|
101 |
|
|
static void |
102 |
|
|
module_exit(void) |
103 |
|
|
{ |
104 |
|
|
mod_del_cmd(&wallops_msgtab); |
105 |
|
|
} |
106 |
|
|
|
107 |
michael |
2820 |
struct module module_entry = |
108 |
|
|
{ |
109 |
michael |
1230 |
.node = { NULL, NULL, NULL }, |
110 |
|
|
.name = NULL, |
111 |
|
|
.version = "$Revision$", |
112 |
|
|
.handle = NULL, |
113 |
|
|
.modinit = module_init, |
114 |
|
|
.modexit = module_exit, |
115 |
|
|
.flags = 0 |
116 |
|
|
}; |