mirror of
https://github.com/matrix-construct/construct
synced 2024-11-15 22:41:12 +01:00
7e1bb8ad0d
channel mode classification which is required by RPL_MYINFO indicating arity, and RPL_ISUPPORT indicating an enumerated class. The content of these replies had previously been generated by hardcoded strings of some letters. Channel modes require classification which corresponds to the CHANMODES= data in RPL_ISUPPORT. Classes A,B,C can then be listed in the unary column of RPL_MYINFO. cflag_add() is updated for this. Additional cleanup of chmode.h and channel.h circularity is also proffered within. Submitted-by: Jason Volk <jason@zemos.net>
57 lines
1.4 KiB
C
57 lines
1.4 KiB
C
/*
|
|
* Treat cmode +-O as +-iI $o.
|
|
*/
|
|
|
|
#include "stdinc.h"
|
|
#include "modules.h"
|
|
#include "client.h"
|
|
#include "hook.h"
|
|
#include "ircd.h"
|
|
#include "chmode.h"
|
|
|
|
static const char chm_operonly_compat[] =
|
|
"Adds an emulated channel mode +O which is converted into mode +i and +I $o";
|
|
|
|
static int _modinit(void);
|
|
static void _moddeinit(void);
|
|
static void chm_operonly(struct Client *source_p, struct Channel *chptr,
|
|
int alevel, int parc, int *parn,
|
|
const char **parv, int *errors, int dir, char c, long mode_type);
|
|
|
|
DECLARE_MODULE_AV2(chm_operonly_compat, _modinit, _moddeinit, NULL, NULL, NULL, NULL, NULL, chm_operonly_compat);
|
|
|
|
static int
|
|
_modinit(void)
|
|
{
|
|
chmode_table['O'].set_func = chm_operonly;
|
|
chmode_table['O'].mode_type = 0;
|
|
chmode_table['O'].mode_class = CHM_D;
|
|
|
|
return 0;
|
|
}
|
|
|
|
static void
|
|
_moddeinit(void)
|
|
{
|
|
chmode_table['O'].set_func = chm_nosuch;
|
|
chmode_table['O'].mode_type = 0;
|
|
chmode_table['O'].mode_class = 0;
|
|
}
|
|
|
|
static void
|
|
chm_operonly(struct Client *source_p, struct Channel *chptr,
|
|
int alevel, int parc, int *parn,
|
|
const char **parv, int *errors, int dir, char c, long mode_type)
|
|
{
|
|
int newparn = 0;
|
|
const char *newparv[] = { "$o" };
|
|
|
|
if (MyClient(source_p)) {
|
|
chm_simple(source_p, chptr, alevel, parc, parn, parv,
|
|
errors, dir, 'i', MODE_INVITEONLY);
|
|
chm_ban(source_p, chptr, alevel, 1, &newparn, newparv,
|
|
errors, dir, 'I', CHFL_INVEX);
|
|
} else
|
|
chm_nosuch(source_p, chptr, alevel, parc, parn, parv,
|
|
errors, dir, c, mode_type);
|
|
}
|