74 lines
2.0 KiB
C
74 lines
2.0 KiB
C
/*
|
|
* IRC - Internet Relay Chat, ircd/m_svsquit.c
|
|
* Copyright (C) 1990 Jarkko Oikarinen and
|
|
* University of Oulu, Computing Center
|
|
*
|
|
* 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 3, 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.
|
|
*
|
|
* $Id: m_svsquit.c 2418 2009-01-05 04:08:27Z sirvulcan $
|
|
*/
|
|
#include "config.h"
|
|
|
|
#include "client.h"
|
|
#include "handlers.h"
|
|
#include "ircd.h"
|
|
#include "ircd_reply.h"
|
|
#include "ircd_string.h"
|
|
#include "msg.h"
|
|
#include "numnicks.h"
|
|
#include "send.h"
|
|
#include "s_conf.h"
|
|
#include "s_misc.h"
|
|
#include "s_user.h"
|
|
|
|
|
|
/*
|
|
* ms_svsquit - server message handler
|
|
*
|
|
* parv[0] = Sender prefix
|
|
* parv[1] = Numeric nick
|
|
* parv[parc-1] = Quit message
|
|
*/
|
|
int ms_svsquit(struct Client* cptr, struct Client* sptr, int parc, char* parv[])
|
|
{
|
|
struct Client *acptr;
|
|
|
|
if (parc < 2)
|
|
return need_more_params(sptr, "SVSQUIT");
|
|
|
|
if (!(acptr = findNUser(parv[1])))
|
|
return 0; /* Ignore svsquit for a user that has quit */
|
|
|
|
if (!MyConnect(acptr)) {
|
|
if (parc > 1 && !BadPtr(parv[parc - 1]))
|
|
sendcmdto_serv_butone(sptr, CMD_SVSQUIT, cptr, "%C :%s", acptr, parv[parc - 1]);
|
|
else
|
|
sendcmdto_serv_butone(sptr, CMD_SVSQUIT, cptr, "%C", acptr);
|
|
|
|
return 0;
|
|
}
|
|
|
|
if (parc > 1 && !BadPtr(parv[parc - 1]))
|
|
return exit_client_msg(acptr, acptr, acptr, "%s", parv[parc - 1]);
|
|
else
|
|
return exit_client(acptr, acptr, acptr, "Quit");
|
|
|
|
return 0;
|
|
}
|
|
|