Remove cruft left behind by removed stats_p_hook.
[seven-1.x.git] / modules / m_user.c
blob1b2040815ac63ab6f0a8b6770a3b081280b60218
1 /*
2 * ircd-ratbox: A slightly useful ircd.
3 * m_user.c: Sends username information.
5 * Copyright (C) 1990 Jarkko Oikarinen and University of Oulu, Co Center
6 * Copyright (C) 1996-2002 Hybrid Development Team
7 * Copyright (C) 2002-2005 ircd-ratbox development team
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
22 * USA
25 #include "stdinc.h"
26 #include "client.h"
27 #include "irc_string.h"
28 #include "ircd.h"
29 #include "numeric.h"
30 #include "s_user.h"
31 #include "send.h"
32 #include "s_conf.h"
33 #include "msg.h"
34 #include "parse.h"
35 #include "modules.h"
36 #include "sprintf_irc.h"
37 #include "blacklist.h"
39 #define UFLAGS (FLAGS_INVISIBLE|FLAGS_WALLOP|FLAGS_SERVNOTICE)
41 static int mr_user(struct Client *, struct Client *, int, const char **);
43 struct Message user_msgtab = {
44 "USER", 0, 0, 0, MFLG_SLOW,
45 {{mr_user, 5}, mg_reg, mg_ignore, mg_ignore, mg_ignore, mg_reg}
48 mapi_clist_av1 user_clist[] = { &user_msgtab, NULL };
49 DECLARE_MODULE_AV1(user, NULL, NULL, user_clist, NULL, NULL, "$Revision: 26 $");
51 static int do_local_user(struct Client *client_p, struct Client *source_p,
52 const char *username, const char *realname);
54 /* mr_user()
55 * parv[1] = username (login name, account)
56 * parv[2] = client host name (ignored)
57 * parv[3] = server host name (ignored)
58 * parv[4] = users gecos
60 static int
61 mr_user(struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
63 static char buf[BUFSIZE];
64 char *p;
66 if (strlen(client_p->id) == 3)
68 exit_client(client_p, client_p, client_p, "Mixing client and server protocol");
69 return 0;
72 if((p = strchr(parv[1], '@')))
73 *p = '\0';
75 ircsnprintf(buf, sizeof(buf), "%s %s", parv[2], parv[3]);
76 MyFree(source_p->localClient->fullcaps);
77 DupString(source_p->localClient->fullcaps, buf);
79 do_local_user(client_p, source_p, parv[1], parv[4]);
80 return 0;
83 static int
84 do_local_user(struct Client *client_p, struct Client *source_p,
85 const char *username, const char *realname)
87 struct User *user;
89 s_assert(NULL != source_p);
90 s_assert(source_p->username != username);
92 user = make_user(source_p);
93 user->server = me.name;
95 if (!(source_p->flags & FLAGS_SENTUSER))
97 lookup_blacklists(source_p);
98 source_p->flags |= FLAGS_SENTUSER;
101 strlcpy(source_p->info, realname, sizeof(source_p->info));
103 if(!IsGotId(source_p))
105 /* This is in this location for a reason..If there is no identd
106 * and ping cookies are enabled..we need to have a copy of this
108 strlcpy(source_p->username, username, sizeof(source_p->username));
111 if(source_p->name[0])
113 /* NICK already received, now I have USER... */
114 return register_local_user(client_p, source_p, username);
117 return 0;