ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/ircd-hybrid/trunk/modules/m_locops.c
Revision: 2826
Committed: Wed Jan 15 23:30:37 2014 UTC (11 years, 7 months ago) by michael
Content type: text/x-csrc
File size: 3118 byte(s)
Log Message:
- Fixed previous commit to ms_locops()

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_locops.c
23 * \brief Includes required functions for processing the LOCOPS 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 "conf.h"
34 #include "s_serv.h"
35 #include "parse.h"
36 #include "modules.h"
37
38
39 /*
40 * mo_locops - LOCOPS message handler
41 * (write to *all* local opers currently online)
42 * parv[0] = sender prefix
43 * parv[1] = message text
44 */
45 static int
46 mo_locops(struct Client *client_p, struct Client *source_p,
47 int parc, char *parv[])
48 {
49 const char *message = parv[1];
50
51 if (!HasOFlag(source_p, OPER_FLAG_LOCOPS))
52 {
53 sendto_one(source_p, form_str(ERR_NOPRIVS),
54 me.name, source_p->name, "locops");
55 return 0;
56 }
57
58 if (EmptyString(message))
59 {
60 sendto_one(source_p, form_str(ERR_NEEDMOREPARAMS),
61 me.name, source_p->name, "LOCOPS");
62 return 0;
63 }
64
65 sendto_realops_flags(UMODE_LOCOPS, L_ALL, SEND_LOCOPS, "from: %s: %s",
66 source_p->name, message);
67 cluster_a_line(source_p, "LOCOPS", 0, SHARED_LOCOPS, message);
68 return 0;
69 }
70
71 static int
72 ms_locops(struct Client *client_p, struct Client *source_p,
73 int parc, char *parv[])
74 {
75 if (parc != 3 || EmptyString(parv[2]))
76 return 0;
77
78 sendto_match_servs(source_p, parv[1], CAP_CLUSTER, "LOCOPS %s :%s",
79 parv[1], parv[2]);
80
81 if (!IsClient(source_p) || match(parv[1], me.name))
82 return 0;
83
84 if (find_matching_name_conf(CONF_ULINE, source_p->servptr->name,
85 "*", "*", SHARED_LOCOPS))
86 sendto_realops_flags(UMODE_LOCOPS, L_ALL, SEND_LOCOPS, "from: %s: %s",
87 source_p->name, parv[2]);
88 return 0;
89 }
90
91 static struct Message locops_msgtab =
92 {
93 "LOCOPS", 0, 0, 2, MAXPARA, MFLG_SLOW, 0,
94 { m_unregistered, m_not_oper, ms_locops, m_ignore, mo_locops, m_ignore }
95 };
96
97 static void
98 module_init(void)
99 {
100 mod_add_cmd(&locops_msgtab);
101 }
102
103 static void
104 module_exit(void)
105 {
106 mod_del_cmd(&locops_msgtab);
107 }
108
109 struct module module_entry =
110 {
111 .node = { NULL, NULL, NULL },
112 .name = NULL,
113 .version = "$Revision$",
114 .handle = NULL,
115 .modinit = module_init,
116 .modexit = module_exit,
117 .flags = 0
118 };

Properties

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