]> jfr.im git - solanum.git/blame - extensions/chm_quietunreg_compat.c
extensions/extb_ssl.c: make certfp parameter case-insensitive
[solanum.git] / extensions / chm_quietunreg_compat.c
CommitLineData
b50c1127
JT
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"
c84557ac 11#include "chmode.h"
b50c1127 12
eeabf33a
EM
13static const char chm_quietunreg_compat_desc[] =
14 "Adds an emulated channel mode +R which is converted into mode +q $~a";
15
b50c1127
JT
16static int _modinit(void);
17static void _moddeinit(void);
18static 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
581dad19 22DECLARE_MODULE_AV2(chm_quietunreg_compat, _modinit, _moddeinit, NULL, NULL, NULL, NULL, NULL, chm_quietunreg_compat_desc);
b50c1127
JT
23
24static 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
33static void
34_moddeinit(void)
35{
36 chmode_table['R'].set_func = chm_nosuch;
37 chmode_table['R'].mode_type = 0;
38}
39
40static void
41chm_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', CHFL_QUIET);
51 else
52 chm_nosuch(source_p, chptr, alevel, parc, parn, parv,
53 errors, dir, c, mode_type);
54}