]> jfr.im git - solanum.git/blob - extensions/chm_sslonly_compat.c
modules: Add AV2 descriptions to all m_u* modules
[solanum.git] / extensions / chm_sslonly_compat.c
1 /*
2 * Treat cmode +-S as +-b $~z.
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_sslonly(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 static const char chm_sslonly_compat_desc[] =
18 "Adds an emulated channel mode +S which is converted into mode +b $~z";
19
20 DECLARE_MODULE_AV2(chm_sslonly_compat, _modinit, _moddeinit, NULL, NULL, NULL, NULL, NULL, chm_sslonly_compat_desc);
21
22 static int
23 _modinit(void)
24 {
25 chmode_table['S'].set_func = chm_sslonly;
26 chmode_table['S'].mode_type = 0;
27
28 return 0;
29 }
30
31 static void
32 _moddeinit(void)
33 {
34 chmode_table['S'].set_func = chm_nosuch;
35 chmode_table['S'].mode_type = 0;
36 }
37
38 static void
39 chm_sslonly(struct Client *source_p, struct Channel *chptr,
40 int alevel, int parc, int *parn,
41 const char **parv, int *errors, int dir, char c, long mode_type)
42 {
43 int newparn = 0;
44 const char *newparv[] = { "$~z" };
45
46 if (MyClient(source_p))
47 chm_ban(source_p, chptr, alevel, 1, &newparn, newparv,
48 errors, dir, 'b', CHFL_BAN);
49 else
50 chm_nosuch(source_p, chptr, alevel, parc, parn, parv,
51 errors, dir, c, mode_type);
52 }