ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/ircd-hybrid/trunk/modules/m_operwall.c
Revision: 3186
Committed: Thu Mar 20 18:09:34 2014 UTC (11 years, 5 months ago) by michael
Content type: text/x-csrc
File size: 2898 byte(s)
Log Message:
- Get rid of the ID() macro

File Contents

# Content
1 /*
2 * ircd-hybrid: an advanced, lightweight Internet Relay Chat Daemon (ircd)
3 *
4 * Copyright (c) 1997-2014 ircd-hybrid development team
5 *
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 /*! \file m_operwall.c
23 * \brief Includes required functions for processing the OPERWALL command.
24 * \version $Id$
25 */
26
27 #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_operwall - OPERWALL message handler
40 * (write to *all* local opers currently online)
41 * parv[0] = command
42 * parv[1] = message text
43 */
44 static int
45 mo_operwall(struct Client *source_p, int parc, char *parv[])
46 {
47 const char *message = parv[1];
48
49 if (!HasOFlag(source_p, OPER_FLAG_OPERWALL))
50 {
51 sendto_one_numeric(source_p, &me, ERR_NOPRIVS, "operwall");
52 return 0;
53 }
54
55 if (EmptyString(message))
56 {
57 sendto_one_numeric(source_p, &me, ERR_NEEDMOREPARAMS, "OPERWALL");
58 return 0;
59 }
60
61 sendto_server(source_p, NOCAPS, NOCAPS, ":%s OPERWALL :%s",
62 source_p->id, message);
63 sendto_wallops_flags(UMODE_OPERWALL, source_p, "OPERWALL - %s", message);
64 return 0;
65 }
66
67 /*
68 * ms_operwall - OPERWALL message handler
69 * (write to *all* local opers currently online)
70 * parv[0] = command
71 * parv[1] = message text
72 */
73 static int
74 ms_operwall(struct Client *source_p, int parc, char *parv[])
75 {
76 const char *message = parv[1];
77
78 if (EmptyString(message))
79 return 0;
80
81 sendto_server(source_p, NOCAPS, NOCAPS, ":%s OPERWALL :%s",
82 source_p->id, message);
83 sendto_wallops_flags(UMODE_OPERWALL, source_p, "OPERWALL - %s", message);
84 return 0;
85 }
86
87 static struct Message operwall_msgtab =
88 {
89 "OPERWALL", 0, 0, 2, MAXPARA, MFLG_SLOW, 0,
90 { m_unregistered, m_not_oper, ms_operwall, m_ignore, mo_operwall, m_ignore }
91 };
92
93 static void
94 module_init(void)
95 {
96 mod_add_cmd(&operwall_msgtab);
97 }
98
99 static void
100 module_exit(void)
101 {
102 mod_del_cmd(&operwall_msgtab);
103 }
104
105 struct module module_entry =
106 {
107 .node = { NULL, NULL, NULL },
108 .name = NULL,
109 .version = "$Revision$",
110 .handle = NULL,
111 .modinit = module_init,
112 .modexit = module_exit,
113 .flags = 0
114 };

Properties

Name Value
svn:eol-style native
svn:keywords Id Revision