]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/cmd_pass.cpp
Annotations
[user/henk/code/inspircd.git] / src / cmd_pass.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
6  *                       E-mail:
7  *                <brain@chatspike.net>
8  *                <Craig@chatspike.net>
9  *
10  * Written by Craig Edwards, Craig McLure, and others.
11  * This program is free but copyrighted software; see
12  *            the file COPYING for details.
13  *
14  * ---------------------------------------------------
15  */
16
17 #include "users.h"
18 #include "commands/cmd_pass.h"
19
20
21
22 extern "C" command_t* init_command(InspIRCd* Instance)
23 {
24         return new cmd_pass(Instance);
25 }
26
27 CmdResult cmd_pass::Handle (const char** parameters, int pcnt, userrec *user)
28 {
29         // Check to make sure they havnt registered -- Fix by FCS
30         if (user->registered == REG_ALL)
31         {
32                 user->WriteServ("462 %s :You may not reregister",user->nick);
33                 return CMD_FAILURE;
34         }
35         ConnectClass a = user->GetClass();
36         strlcpy(user->password,parameters[0],63);
37         if (!strcmp(parameters[0],a.pass.c_str()))
38         {
39                 user->haspassed = true;
40         }
41
42         return CMD_SUCCESS;
43 }