ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/ircd-hybrid/trunk/modules/m_locops.c
Revision: 3156
Committed: Fri Mar 14 19:57:38 2014 UTC (11 years, 5 months ago) by michael
Content type: text/x-csrc
File size: 2968 byte(s)
Log Message:
- Removed client_p pointers from everywhere

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] = command
43 * parv[1] = message text
44 */
45 static int
46 mo_locops(struct Client *source_p, int parc, char *parv[])
47 {
48 const char *message = parv[1];
49
50 if (!HasOFlag(source_p, OPER_FLAG_LOCOPS))
51 {
52 sendto_one_numeric(source_p, &me, ERR_NOPRIVS, "locops");
53 return 0;
54 }
55
56 if (EmptyString(message))
57 {
58 sendto_one_numeric(source_p, &me, ERR_NEEDMOREPARAMS, "LOCOPS");
59 return 0;
60 }
61
62 sendto_realops_flags(UMODE_LOCOPS, L_ALL, SEND_LOCOPS, "from: %s: %s",
63 source_p->name, message);
64 cluster_a_line(source_p, "LOCOPS", 0, SHARED_LOCOPS, message);
65 return 0;
66 }
67
68 static int
69 ms_locops(struct Client *source_p, int parc, char *parv[])
70 {
71 if (parc != 3 || EmptyString(parv[2]))
72 return 0;
73
74 sendto_match_servs(source_p, parv[1], CAP_CLUSTER, "LOCOPS %s :%s",
75 parv[1], parv[2]);
76
77 if (!IsClient(source_p) || match(parv[1], me.name))
78 return 0;
79
80 if (find_matching_name_conf(CONF_ULINE, source_p->servptr->name,
81 "*", "*", SHARED_LOCOPS))
82 sendto_realops_flags(UMODE_LOCOPS, L_ALL, SEND_LOCOPS, "from: %s: %s",
83 source_p->name, parv[2]);
84 return 0;
85 }
86
87 static struct Message locops_msgtab =
88 {
89 "LOCOPS", 0, 0, 2, MAXPARA, MFLG_SLOW, 0,
90 { m_unregistered, m_not_oper, ms_locops, m_ignore, mo_locops, m_ignore }
91 };
92
93 static void
94 module_init(void)
95 {
96 mod_add_cmd(&locops_msgtab);
97 }
98
99 static void
100 module_exit(void)
101 {
102 mod_del_cmd(&locops_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