]> jfr.im git - irc/rqf/shadowircd.git/blame - modules/m_operspy.c
When checking if a nick resv or xline already exists, match exact not wild.
[irc/rqf/shadowircd.git] / modules / m_operspy.c
CommitLineData
212380e3 1/* modules/m_operspy.c
2 * Copyright (C) 2003-2005 ircd-ratbox development team
3 * Copyright (C) 2003 Lee Hardy <lee@leeh.co.uk>
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met:
8 *
9 * 1.Redistributions of source code must retain the above copyright notice,
10 * this list of conditions and the following disclaimer.
11 * 2.Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * 3.The name of the author may not be used to endorse or promote products
15 * derived from this software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
19 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
20 * DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
21 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
22 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
23 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
25 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
26 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
27 * POSSIBILITY OF SUCH DAMAGE.
28 *
29 * $Id: m_operspy.c 254 2005-09-21 23:35:12Z nenolod $
30 */
31
32#include "stdinc.h"
33#include "tools.h"
34#include "send.h"
35#include "channel.h"
36#include "client.h"
37#include "common.h"
38#include "config.h"
39#include "ircd.h"
40#include "numeric.h"
41#include "memory.h"
42#include "s_serv.h"
43#include "hash.h"
44#include "msg.h"
45#include "parse.h"
46#include "modules.h"
47#include "sprintf_irc.h"
48
49static int ms_operspy(struct Client *client_p, struct Client *source_p,
50 int parc, const char *parv[]);
51
52struct Message operspy_msgtab = {
53 "OPERSPY", 0, 0, 0, MFLG_SLOW,
54 {mg_ignore, mg_ignore, mg_ignore, mg_ignore, {ms_operspy, 2}, mg_ignore}
55};
56
57mapi_clist_av1 operspy_clist[] = { &operspy_msgtab, NULL };
58DECLARE_MODULE_AV1(operspy, NULL, NULL, operspy_clist, NULL, NULL, "$Revision: 254 $");
59
60/* ms_operspy()
61 *
62 * parv[1] - operspy command
63 * parv[2] - optional params
64 */
65static int
66ms_operspy(struct Client *client_p, struct Client *source_p,
67 int parc, const char *parv[])
68{
69 static char buffer[BUFSIZE];
70 char *ptr;
71 int cur_len = 0;
72 int len, i;
73
74 if(parc < 4)
75 {
76 report_operspy(source_p, parv[1],
77 parc < 3 ? NULL : parv[2]);
78 }
79 /* buffer all remaining into one param */
80 else
81 {
82 ptr = buffer;
83 cur_len = 0;
84
85 for(i = 2; i < parc; i++)
86 {
87 len = strlen(parv[i]) + 1;
88
89 if((size_t)(cur_len + len) >= sizeof(buffer))
90 return 0;
91
92 ircsnprintf(ptr, sizeof(buffer) - cur_len, "%s ",
93 parv[i]);
94 ptr += len;
95 cur_len += len;
96 }
97
98 report_operspy(source_p, parv[1], buffer);
99 }
100
101 return 0;
102}
103