(Created page with "<syntaxhighlight lang="c" line> /* * IRC - Internet Relay Chat, src/modules/third/nosajoinpart.c * (C) 2021 Polsaker * * See file AUTHORS in IRC package for additio...") |
m (Protected "Module:nosajoinpart.c" ([Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite))) |
||
(No difference)
|
Latest revision as of 22:47, 12 July 2021
/*
* IRC - Internet Relay Chat, src/modules/third/nosajoinpart.c
* (C) 2021 Polsaker
*
* See file AUTHORS in IRC package for additional names of
* the programmers.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 1, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#include "unrealircd.h"
ModuleHeader MOD_HEADER
= {
"third/nosajoinpart",
"1.0",
"Disables remote SAJOIN/SAPART targeted to local users",
"Polsaker",
"unrealircd-5",
};
CMD_OVERRIDE_FUNC(override_sajp);
MOD_INIT()
{
return MOD_SUCCESS;
}
MOD_LOAD()
{
if (!CommandOverrideAdd(modinfo->handle, "SAJOIN", override_sajp))
return MOD_FAILED;
if (!CommandOverrideAdd(modinfo->handle, "SAPART", override_sajp))
return MOD_FAILED;
return MOD_SUCCESS;
}
MOD_UNLOAD()
{
return MOD_SUCCESS;
}
CMD_OVERRIDE_FUNC(override_sajp)
{
Client *target;
if ((parc < 3) || BadPtr(parv[2]))
{
sendnumeric(client, ERR_NEEDMOREPARAMS, "SAJOIN");
return;
}
if (!(target = find_person(parv[1], NULL)))
{
sendnumeric(client, ERR_NOSUCHNICK, parv[1]);
return;
}
if (MyUser(target) && !MyUser(client))
{
sendnumeric(client, ERR_YOUREBANNEDCREEP, "I don't wanna :(");
return;
}
CallCommandOverride(ovr, client, recv_mtags, parc, parv);
}