9d745dbd21
With this comes an example module to block the killing of services. NOTE: this will not cancel remote kills. Those are still accepted, per the TS 6 specification.
50 lines
1.1 KiB
C
50 lines
1.1 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 "stdinc.h"
|
|
#include "modules.h"
|
|
#include "hook.h"
|
|
#include "client.h"
|
|
#include "ircd.h"
|
|
#include "send.h"
|
|
#include "hash.h"
|
|
#include "s_conf.h"
|
|
#include "s_user.h"
|
|
#include "s_serv.h"
|
|
#include "numeric.h"
|
|
#include "privilege.h"
|
|
#include "s_newconf.h"
|
|
|
|
static void block_services_kill(void *data);
|
|
|
|
mapi_hfn_list_av1 m_nokillservices_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_notice(data->client, ":You may not kill network service %s",
|
|
data->target->name);
|
|
data->approved = 0;
|
|
}
|
|
}
|
|
|
|
DECLARE_MODULE_AV1(m_nokillservices, NULL, NULL, NULL, NULL,
|
|
m_nokillservices_hfnlist, "Charybdis 3.4+");
|