mirror of
https://github.com/matrix-construct/construct
synced 2024-11-16 15:00:51 +01:00
61b517ca3c
* To benefit from the precompiled-header (PCH) it MUST provide "the first C token." Advantages: Never worry about the include stack again. Remember, this means one less thing for random module developers, community people learning C++, and new developers to deal with. It should reduce the learning curve and barrier for participation. Disadvantages: Makes overall compilation a bit slower, especially without any additional work to improve it again. There are several opportunities, places where the PCH is probably being ignored, etc that can be addressed.
45 lines
967 B
C++
45 lines
967 B
C++
using namespace ircd;
|
|
|
|
static const char chm_sslonly_desc[] =
|
|
"Adds channel mode +S that bans non-SSL users from joing a channel";
|
|
|
|
static void h_can_join(hook_data_channel *);
|
|
|
|
mapi_hfn_list_av1 sslonly_hfnlist[] = {
|
|
{ "can_join", (hookfn) h_can_join },
|
|
{ NULL, NULL }
|
|
};
|
|
|
|
static unsigned int mymode;
|
|
|
|
static int
|
|
_modinit(void)
|
|
{
|
|
mymode = cflag_add('S', CHM_D, chm_simple);
|
|
if (mymode == 0)
|
|
return -1;
|
|
|
|
return 0;
|
|
}
|
|
|
|
static void
|
|
_moddeinit(void)
|
|
{
|
|
cflag_orphan('S');
|
|
}
|
|
|
|
DECLARE_MODULE_AV2(chm_sslonly, _modinit, _moddeinit, NULL, NULL, sslonly_hfnlist, NULL, NULL, chm_sslonly_desc);
|
|
|
|
static void
|
|
h_can_join(hook_data_channel *data)
|
|
{
|
|
struct Client *source_p = data->client;
|
|
struct Channel *chptr = data->chptr;
|
|
|
|
if((chptr->mode.mode & mymode) && !IsSSLClient(source_p)) {
|
|
/* XXX This is equal to ERR_THROTTLE */
|
|
sendto_one_numeric(source_p, 480, "%s :Cannot join channel (+S) - SSL/TLS required", chptr->chname);
|
|
data->approved = ERR_CUSTOM;
|
|
}
|
|
}
|
|
|