51 lines
1.0 KiB
C
51 lines
1.0 KiB
C
/*
|
|
* Copyright (c) 2011 William Pitcock <nenolod@atheme.org>
|
|
* Rights to this code are as documented in doc/LICENSE.
|
|
*
|
|
* Set/unset DALnet channel mode +r on registration/deregistration.
|
|
*/
|
|
|
|
#include "atheme.h"
|
|
|
|
DECLARE_MODULE_V1
|
|
(
|
|
"contrib/cs_regmode", false, _modinit, _moddeinit,
|
|
PACKAGE_STRING,
|
|
"Atheme Development Group <http://www.atheme.org>"
|
|
);
|
|
|
|
static void register_hook(hook_channel_req_t *hdata)
|
|
{
|
|
mychan_t *mc = hdata->mc;
|
|
|
|
if (mc == NULL || mc->chan == NULL)
|
|
return;
|
|
|
|
modestack_mode_simple(chansvs.nick, mc->chan, MTYPE_ADD, CMODE_CHANREG);
|
|
}
|
|
|
|
static void drop_hook(mychan_t *mc)
|
|
{
|
|
if (mc == NULL || mc->chan == NULL)
|
|
return;
|
|
|
|
modestack_mode_simple(chansvs.nick, mc->chan, MTYPE_DEL, CMODE_CHANREG);
|
|
}
|
|
|
|
void
|
|
_modinit(module_t *m)
|
|
{
|
|
hook_add_event("channel_register");
|
|
hook_add_channel_register(register_hook);
|
|
|
|
hook_add_event("channel_drop");
|
|
hook_add_channel_drop(drop_hook);
|
|
}
|
|
|
|
void
|
|
_moddeinit(module_unload_intent_t intent)
|
|
{
|
|
hook_del_channel_register(register_hook);
|
|
hook_del_channel_drop(drop_hook);
|
|
}
|