2012-03-18 02:18:57 +01:00
|
|
|
/*
|
|
|
|
* m_tginfo.c: propagates target-change status information
|
|
|
|
*
|
|
|
|
* Copyright (C) 2012 Keith Buck
|
|
|
|
* Copyright (C) 2012 charybdis development team
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions are
|
|
|
|
* met:
|
|
|
|
*
|
|
|
|
* 1.Redistributions of source code must retain the above copyright notice,
|
|
|
|
* this list of conditions and the following disclaimer.
|
|
|
|
* 2.Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|
|
|
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
|
|
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
|
|
* DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
|
|
|
|
* INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
|
|
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
|
|
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
|
|
|
|
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
|
|
|
|
* IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "stdinc.h"
|
|
|
|
#include "client.h"
|
|
|
|
#include "match.h"
|
|
|
|
#include "hash.h"
|
|
|
|
#include "ircd.h"
|
|
|
|
#include "numeric.h"
|
|
|
|
#include "send.h"
|
|
|
|
#include "msg.h"
|
|
|
|
#include "modules.h"
|
|
|
|
#include "s_newconf.h" /* add_tgchange */
|
|
|
|
|
2016-03-07 09:27:32 +01:00
|
|
|
static const char tginfo_desc[] = "Processes target change notifications from other servers";
|
2012-03-18 02:18:57 +01:00
|
|
|
|
2016-03-09 08:37:03 +01:00
|
|
|
static void me_tginfo(struct MsgBuf *, struct Client *, struct Client *, int, const char **);
|
2016-03-09 08:29:41 +01:00
|
|
|
|
2012-03-18 02:18:57 +01:00
|
|
|
struct Message tginfo_msgtab = {
|
2016-02-19 23:42:40 +01:00
|
|
|
"TGINFO", 0, 0, 0, 0,
|
2012-03-25 19:04:21 +02:00
|
|
|
{mg_unreg, mg_ignore, mg_ignore, mg_ignore, {me_tginfo, 2}, mg_ignore}
|
2012-03-18 02:18:57 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
mapi_clist_av1 tginfo_clist[] = { &tginfo_msgtab, NULL };
|
|
|
|
|
2016-03-07 09:27:32 +01:00
|
|
|
DECLARE_MODULE_AV2(tginfo, NULL, NULL, tginfo_clist, NULL, NULL, NULL, NULL, tginfo_desc);
|
2012-03-18 02:18:57 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
** me_tginfo
|
|
|
|
** parv[1] = 0, reserved for future use (number of remaining targets)
|
|
|
|
*/
|
2016-03-09 08:37:03 +01:00
|
|
|
static void
|
2016-02-11 03:54:17 +01:00
|
|
|
me_tginfo(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
|
2012-03-18 02:18:57 +01:00
|
|
|
{
|
|
|
|
if (!IsPerson(source_p))
|
2016-03-09 08:37:03 +01:00
|
|
|
return;
|
2012-03-18 02:18:57 +01:00
|
|
|
|
|
|
|
int remaining = atoi(parv[1]);
|
|
|
|
if (remaining != 0)
|
2016-03-09 08:37:03 +01:00
|
|
|
return; /* not implemented */
|
2012-03-18 02:18:57 +01:00
|
|
|
|
|
|
|
if (!EmptyString(source_p->sockhost) && strcmp(source_p->sockhost, "0"))
|
|
|
|
{
|
|
|
|
/* We can't really add the tgchange if we don't have their IP... */
|
|
|
|
add_tgchange(source_p->sockhost);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!IsTGExcessive(source_p))
|
|
|
|
{
|
|
|
|
SetTGExcessive(source_p);
|
|
|
|
sendto_realops_snomask_from(SNO_BOTS, L_ALL, source_p->servptr,
|
|
|
|
"Excessive target change from %s (%s@%s)",
|
|
|
|
source_p->name, source_p->username, source_p->orighost);
|
|
|
|
}
|
|
|
|
}
|