mirror of
https://github.com/matrix-construct/construct
synced 2024-11-03 04:18:55 +01:00
28 lines
641 B
C++
28 lines
641 B
C++
/*
|
|
* Disable LOCOPS (by disallowing any local user setting +l).
|
|
* -- jilles
|
|
*/
|
|
|
|
using namespace ircd;
|
|
|
|
static const char no_locops_desc[] = "Disables local operators";
|
|
|
|
static void h_nl_umode_changed(hook_data_umode_changed *);
|
|
|
|
mapi_hfn_list_av1 nl_hfnlist[] = {
|
|
{ "umode_changed", (hookfn) h_nl_umode_changed },
|
|
{ NULL, NULL }
|
|
};
|
|
|
|
DECLARE_MODULE_AV2(no_locops, NULL, NULL, NULL, NULL, nl_hfnlist, NULL, NULL, no_locops_desc);
|
|
|
|
static void
|
|
h_nl_umode_changed(hook_data_umode_changed *hdata)
|
|
{
|
|
client::client *source_p = hdata->client;
|
|
|
|
if (my(*source_p) && source_p->mode & umode::LOCOPS)
|
|
{
|
|
source_p->mode &= ~umode::LOCOPS;
|
|
}
|
|
}
|