]> jfr.im git - solanum.git/blame - extensions/chm_sslonly_compat.c
AV2 descriptions for m_[no]*
[solanum.git] / extensions / chm_sslonly_compat.c
CommitLineData
6d1a8b6e
VY
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"
c84557ac 10#include "chmode.h"
6d1a8b6e
VY
11
12static int _modinit(void);
13static void _moddeinit(void);
14static 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);
581dad19
EM
17static const char chm_sslonly_compat_desc[] =
18 "Adds an emulated channel mode +S which is converted into mode +b $~z";
6d1a8b6e 19
581dad19 20DECLARE_MODULE_AV2(chm_sslonly_compat, _modinit, _moddeinit, NULL, NULL, NULL, NULL, NULL, chm_sslonly_compat_desc);
6d1a8b6e
VY
21
22static 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
31static void
32_moddeinit(void)
33{
34 chmode_table['S'].set_func = chm_nosuch;
35 chmode_table['S'].mode_type = 0;
36}
37
38static void
39chm_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}