]> jfr.im git - irc/rqf/shadowircd.git/blob - extensions/chm_quietunreg_compat.c
Automated merge with ssh://shadowircd/uranium/shadowircd/
[irc/rqf/shadowircd.git] / extensions / chm_quietunreg_compat.c
1 /*
2 * Treat cmode +-R as +-q $~a.
3 * -- jilles
4 */
5
6 #include "stdinc.h"
7 #include "modules.h"
8 #include "client.h"
9 #include "hook.h"
10 #include "ircd.h"
11 #include "chmode.h"
12 #include "channel.h"
13
14 struct module_modes ModuleModes;
15
16 static int _modinit(void);
17 static void _moddeinit(void);
18 static void chm_quietunreg(struct Client *source_p, struct Channel *chptr,
19 int alevel, int parc, int *parn,
20 const char **parv, int *errors, int dir, char c, long mode_type);
21
22 DECLARE_MODULE_AV1(chm_quietunreg_compat, _modinit, _moddeinit, NULL, NULL, NULL, "$Revision$");
23
24 static int
25 _modinit(void)
26 {
27 chmode_table['R'].set_func = chm_quietunreg;
28 chmode_table['R'].mode_type = 0;
29
30 return 0;
31 }
32
33 static void
34 _moddeinit(void)
35 {
36 chmode_table['R'].set_func = chm_nosuch;
37 chmode_table['R'].mode_type = 0;
38 }
39
40 static void
41 chm_quietunreg(struct Client *source_p, struct Channel *chptr,
42 int alevel, int parc, int *parn,
43 const char **parv, int *errors, int dir, char c, long mode_type)
44 {
45 int newparn = 0;
46 const char *newparv[] = { "$~a" };
47
48 if (MyClient(source_p))
49 chm_ban(source_p, chptr, alevel, 1, &newparn, newparv,
50 errors, dir, 'q', ModuleModes.CHFL_QUIET);
51 else
52 chm_nosuch(source_p, chptr, alevel, parc, parn, parv,
53 errors, dir, c, mode_type);
54 }