mirror of
https://github.com/matrix-construct/construct
synced 2025-01-04 20:04:30 +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.
41 lines
955 B
C++
41 lines
955 B
C++
/*
|
|
* Stop services kills
|
|
* Well, it won't stop them all, unless this is loaded on all servers.
|
|
*
|
|
* Copyright (C) 2013 Elizabeth Myers. All rights reserved.
|
|
* Licensed under the WTFPLv2
|
|
*/
|
|
|
|
using namespace ircd;
|
|
|
|
static const char nokill_desc[] = "Prevents operators from killing services";
|
|
|
|
static void block_services_kill(void *data);
|
|
|
|
mapi_hfn_list_av1 no_kill_services_hfnlist[] = {
|
|
{ "can_kill", (hookfn) block_services_kill },
|
|
{ NULL, NULL }
|
|
};
|
|
|
|
static void
|
|
block_services_kill(void *vdata)
|
|
{
|
|
hook_data_client_approval *data = (hook_data_client_approval *) vdata;
|
|
|
|
if (!MyClient(data->client))
|
|
return;
|
|
|
|
if (!data->approved)
|
|
return;
|
|
|
|
if (IsService(data->target))
|
|
{
|
|
sendto_one_numeric(data->client, ERR_ISCHANSERVICE,
|
|
"KILL %s :Cannot kill a network service",
|
|
data->target->name);
|
|
data->approved = 0;
|
|
}
|
|
}
|
|
|
|
DECLARE_MODULE_AV2(no_kill_services, NULL, NULL, NULL, NULL,
|
|
no_kill_services_hfnlist, NULL, NULL, nokill_desc);
|