0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2025-03-01 23:20:16 +01:00
construct/extensions/no_kill_services.c
Jason Volk ea53aab823 Refactor repository layout.
* librb is no longer a separately configured subproject.
* charybdis is now a standalone directory with a binary.
* Include path layout now requires a directory ircd/ rb/ etc.
2016-07-21 20:51:02 -07:00

53 lines
1.2 KiB
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
*/
#include <ircd/stdinc.h>
#include <ircd/modules.h>
#include <ircd/hook.h>
#include <ircd/client.h>
#include <ircd/ircd.h>
#include <ircd/send.h>
#include <ircd/hash.h>
#include <ircd/s_conf.h>
#include <ircd/s_user.h>
#include <ircd/s_serv.h>
#include <ircd/numeric.h>
#include <ircd/privilege.h>
#include <ircd/s_newconf.h>
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);