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.
|
|
|
|
*/
|
|
|
|
|
2016-08-13 05:05:54 +02:00
|
|
|
using namespace ircd;
|
|
|
|
|
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-08-23 02:37:07 +02:00
|
|
|
static void me_tginfo(struct MsgBuf *, client::client &, client::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-08-23 02:37:07 +02:00
|
|
|
me_tginfo(struct MsgBuf *msgbuf_p, client::client &client, client::client &source, int parc, const char *parv[])
|
2012-03-18 02:18:57 +01:00
|
|
|
{
|
2016-08-23 04:33:36 +02:00
|
|
|
if (!is_person(source))
|
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
|
|
|
|
2016-08-23 02:37:07 +02:00
|
|
|
if (!EmptyString(source.sockhost) && strcmp(source.sockhost, "0"))
|
2012-03-18 02:18:57 +01:00
|
|
|
{
|
|
|
|
/* We can't really add the tgchange if we don't have their IP... */
|
2016-08-23 02:37:07 +02:00
|
|
|
add_tgchange(source.sockhost);
|
2012-03-18 02:18:57 +01:00
|
|
|
}
|
|
|
|
|
2016-08-23 04:33:36 +02:00
|
|
|
if (!is_tg_excessive(source))
|
2012-03-18 02:18:57 +01:00
|
|
|
{
|
2016-08-23 04:33:36 +02:00
|
|
|
set_tg_excessive(source);
|
2016-08-26 13:50:12 +02:00
|
|
|
sendto_realops_snomask_from(sno::BOTS, L_ALL, source.servptr,
|
2012-03-18 02:18:57 +01:00
|
|
|
"Excessive target change from %s (%s@%s)",
|
2016-08-23 02:37:07 +02:00
|
|
|
source.name, source.username, source.orighost);
|
2012-03-18 02:18:57 +01:00
|
|
|
}
|
|
|
|
}
|