]> jfr.im git - irc/rqf/shadowircd.git/blob - extensions/chm_operonly_compat.c
Add description for LOCOPS message.
[irc/rqf/shadowircd.git] / extensions / chm_operonly_compat.c
1 /*
2 * Treat cmode +-O as +-iI $o.
3 */
4
5 #include "stdinc.h"
6 #include "modules.h"
7 #include "client.h"
8 #include "hook.h"
9 #include "ircd.h"
10 #include "chmode.h"
11
12 static int _modinit(void);
13 static void _moddeinit(void);
14 static void chm_operonly(struct Client *source_p, struct Channel *chptr,
15 int alevel, int parc, int *parn,
16 const char **parv, int *errors, int dir, char c, long mode_type);
17
18 DECLARE_MODULE_AV1(chm_operonly_compat, _modinit, _moddeinit, NULL, NULL, NULL, "$Revision$");
19
20 static int
21 _modinit(void)
22 {
23 chmode_table['O'].set_func = chm_operonly;
24 chmode_table['O'].mode_type = 0;
25
26 return 0;
27 }
28
29 static void
30 _moddeinit(void)
31 {
32 chmode_table['O'].set_func = chm_nosuch;
33 chmode_table['O'].mode_type = 0;
34 }
35
36 static void
37 chm_operonly(struct Client *source_p, struct Channel *chptr,
38 int alevel, int parc, int *parn,
39 const char **parv, int *errors, int dir, char c, long mode_type)
40 {
41 int newparn = 0;
42 const char *newparv[] = { "$o" };
43
44 if (MyClient(source_p)) {
45 chm_simple(source_p, chptr, alevel, parc, parn, parv,
46 errors, dir, 'i', MODE_INVITEONLY);
47 chm_ban(source_p, chptr, alevel, 1, &newparn, newparv,
48 errors, dir, 'I', CHFL_INVEX);
49 } else
50 chm_nosuch(source_p, chptr, alevel, parc, parn, parv,
51 errors, dir, c, mode_type);
52 }