2008-04-08 17:29:19 +00:00
|
|
|
/*
|
|
|
|
* Treat cmode +-S as +-b $~z.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "stdinc.h"
|
|
|
|
#include "modules.h"
|
|
|
|
#include "client.h"
|
|
|
|
#include "hook.h"
|
|
|
|
#include "ircd.h"
|
2008-04-08 19:39:35 +00:00
|
|
|
#include "chmode.h"
|
2008-04-08 17:29:19 +00:00
|
|
|
|
2016-03-09 07:29:41 +00:00
|
|
|
static const char chm_sslonly_compat_desc[] =
|
|
|
|
"Adds an emulated channel mode +S which is converted into mode +b $~z";
|
|
|
|
|
2008-04-08 17:29:19 +00:00
|
|
|
static int _modinit(void);
|
|
|
|
static void _moddeinit(void);
|
2020-11-08 00:45:12 +00:00
|
|
|
static ChannelModeFunc chm_sslonly;
|
2008-04-08 17:29:19 +00:00
|
|
|
|
2016-03-07 05:48:27 +00:00
|
|
|
DECLARE_MODULE_AV2(chm_sslonly_compat, _modinit, _moddeinit, NULL, NULL, NULL, NULL, NULL, chm_sslonly_compat_desc);
|
2008-04-08 17:29:19 +00:00
|
|
|
|
|
|
|
static int
|
|
|
|
_modinit(void)
|
|
|
|
{
|
2020-11-05 16:31:57 +00:00
|
|
|
chmode_table['S'] = (struct ChannelMode){ chm_sslonly, 0, 0 };
|
2008-04-08 17:29:19 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
_moddeinit(void)
|
|
|
|
{
|
2020-11-05 16:31:57 +00:00
|
|
|
chmode_table['S'] = (struct ChannelMode){ chm_nosuch, 0, 0 };
|
2008-04-08 17:29:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
chm_sslonly(struct Client *source_p, struct Channel *chptr,
|
2020-11-05 16:31:57 +00:00
|
|
|
int alevel, const char *arg, int *errors, int dir, char c, long mode_type)
|
2008-04-08 17:29:19 +00:00
|
|
|
{
|
|
|
|
if (MyClient(source_p))
|
2020-11-05 16:31:57 +00:00
|
|
|
chm_ban(source_p, chptr, alevel, "$~z",
|
2008-04-08 17:29:19 +00:00
|
|
|
errors, dir, 'b', CHFL_BAN);
|
|
|
|
else
|
2020-11-05 16:31:57 +00:00
|
|
|
chm_nosuch(source_p, chptr, alevel, NULL,
|
2008-04-08 17:29:19 +00:00
|
|
|
errors, dir, c, mode_type);
|
|
|
|
}
|