mirror of
https://github.com/matrix-construct/construct
synced 2024-11-03 04:18:55 +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.
35 lines
966 B
C++
35 lines
966 B
C++
/*
|
|
* Deny opers setting themselves +i unless they are bots (i.e. have
|
|
* hidden_oper privilege).
|
|
* -- jilles
|
|
*/
|
|
|
|
using namespace ircd;
|
|
|
|
static const char noi_desc[] =
|
|
"Disallow operators from setting user mode +i on themselves";
|
|
|
|
static void h_noi_umode_changed(hook_data_umode_changed *);
|
|
|
|
mapi_hfn_list_av1 noi_hfnlist[] = {
|
|
{ "umode_changed", (hookfn) h_noi_umode_changed },
|
|
{ NULL, NULL }
|
|
};
|
|
|
|
DECLARE_MODULE_AV2(no_oper_invis, NULL, NULL, NULL, NULL, noi_hfnlist, NULL, NULL, noi_desc);
|
|
|
|
static void
|
|
h_noi_umode_changed(hook_data_umode_changed *hdata)
|
|
{
|
|
struct Client *source_p = hdata->client;
|
|
|
|
if (MyClient(source_p) && IsOper(source_p) && !IsOperInvis(source_p) &&
|
|
IsInvisible(source_p))
|
|
{
|
|
ClearInvisible(source_p);
|
|
/* If they tried /umode +i, complain; do not complain
|
|
* if they opered up while invisible -- jilles */
|
|
if (hdata->oldumodes & UMODE_OPER)
|
|
sendto_one_notice(source_p, ":*** Opers may not set themselves invisible");
|
|
}
|
|
}
|