This repository has been archived on 2025-02-12. You can view files and clone it, but cannot push or open issues or pull requests.
NeoStats-NeoIRCd/modules/m_close.c

96 lines
2.6 KiB
C
Raw Normal View History

2002-08-13 14:34:25 +00:00
/*
* NeoIRCd: NeoStats Group. Based on Hybird7
2002-08-13 14:34:25 +00:00
* m_close.c: Closes all unregistered connections.
*
* Copyright (C) 2002 by the past and present ircd coders, and others.
*
* 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 2 of the License, 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307
* USA
*
2003-03-06 14:01:51 +00:00
* $Id: m_close.c,v 1.5 2003/03/06 14:01:46 fishwaldo Exp $
2002-08-13 14:34:25 +00:00
*/
#include "stdinc.h"
#include "tools.h"
#include "handlers.h"
#include "client.h"
#include "ircd.h"
#include "numeric.h"
#include "fdlist.h"
#include "s_bsd.h"
#include "send.h"
#include "msg.h"
#include "parse.h"
#include "modules.h"
static void mo_close(struct Client*, struct Client*, int, char**);
struct Message close_msgtab = {
"CLOSE", 0, 0, 0, 0, MFLG_SLOW, 0,
{m_unregistered, m_not_oper, m_ignore, mo_close}
};
#ifndef STATIC_MODULES
void
_modinit(void)
{
mod_add_cmd(&close_msgtab);
}
void
_moddeinit(void)
{
mod_del_cmd(&close_msgtab);
}
2003-03-06 14:01:51 +00:00
const char *_version = "$Revision: 1.5 $";
2002-08-13 14:34:25 +00:00
#endif
/*
* mo_close - CLOSE message handler
* - added by Darren Reed Jul 13 1992.
*/
static void
mo_close(struct Client *client_p, struct Client *source_p,
int parc, char *parv[])
2002-08-13 14:34:25 +00:00
{
struct Client *target_p;
dlink_node *ptr;
dlink_node *ptr_next;
int closed = 0;
DLINK_FOREACH_SAFE(ptr, ptr_next, unknown_list.head)
2002-08-13 14:34:25 +00:00
{
target_p = ptr->data;
/* Which list would connecting servers be found in? serv_list ? */
#if 0
if (!IsUnknown(target_p) && !IsConnecting(target_p) &&
!IsHandshake(target_p) && !IsDoingKauth(target_p))
continue;
#endif
sendto_one(source_p, form_str(RPL_CLOSING), me.name, parv[0],
get_client_name(target_p, SHOW_IP), target_p->status);
2003-03-06 14:01:51 +00:00
/*
* exit here is safe, because it is guaranteed not to be source_p
* because it is unregistered and source_p is an oper.
*/
exit_client(target_p, target_p, target_p, "Oper Closing");
2002-08-13 14:34:25 +00:00
closed++;
}
sendto_one(source_p, form_str(RPL_CLOSEEND), me.name, parv[0], closed);
}