93 lines
2.4 KiB
C
93 lines
2.4 KiB
C
/*
|
|
* NeoIRCd: NeoStats Group. Based on Hybird7
|
|
* m_user.c: Sends username information.
|
|
*
|
|
* 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
|
|
*
|
|
* $Id: m_user.c,v 1.3 2002/09/13 06:50:07 fishwaldo Exp $
|
|
*/
|
|
|
|
#include "stdinc.h"
|
|
#include "handlers.h"
|
|
#include "client.h"
|
|
#include "irc_string.h"
|
|
#include "ircd.h"
|
|
#include "numeric.h"
|
|
#include "s_user.h"
|
|
#include "send.h"
|
|
#include "s_conf.h"
|
|
#include "msg.h"
|
|
#include "parse.h"
|
|
#include "modules.h"
|
|
|
|
|
|
#define UFLAGS (FLAGS_INVISIBLE|FLAGS_WALLOP|FLAGS_SERVNOTICE)
|
|
|
|
static void mr_user(struct Client*, struct Client*, int, char**);
|
|
|
|
struct Message user_msgtab = {
|
|
"USER", 0, 0, 5, 0, MFLG_SLOW, 0L,
|
|
{mr_user, m_registered, m_ignore, m_registered}
|
|
};
|
|
|
|
#ifndef STATIC_MODULES
|
|
void
|
|
_modinit(void)
|
|
{
|
|
mod_add_cmd(&user_msgtab);
|
|
}
|
|
|
|
void
|
|
_moddeinit(void)
|
|
{
|
|
mod_del_cmd(&user_msgtab);
|
|
}
|
|
|
|
const char *_version = "$Revision: 1.3 $";
|
|
#endif
|
|
/*
|
|
** mr_user
|
|
** parv[0] = sender prefix
|
|
** parv[1] = username (login name, account)
|
|
** parv[2] = client host name (used only from other servers)
|
|
** parv[3] = server host name (used only from other servers)
|
|
** parv[4] = users real name info
|
|
*/
|
|
static void mr_user(struct Client* client_p, struct Client* source_p,
|
|
int parc, char *parv[])
|
|
{
|
|
char* p;
|
|
|
|
if ((p = strchr(parv[1],'@')))
|
|
*p = '\0';
|
|
|
|
if (*parv[4] == '\0')
|
|
{
|
|
sendto_one(source_p, form_str(ERR_NEEDMOREPARAMS),
|
|
me.name, BadPtr(parv[0]) ? "*" : parv[0], "USER");
|
|
return;
|
|
}
|
|
|
|
do_local_user(parv[0], client_p, source_p,
|
|
parv[1], /* username */
|
|
parv[2], /* host */
|
|
parv[3], /* server */
|
|
parv[4] /* users real name */ );
|
|
}
|
|
|
|
|