]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/cmd_user.cpp
Set EOL to WINDOWS-style always for Visual Studio files.
[user/henk/code/inspircd.git] / src / cmd_user.cpp
1 /*       +------------------------------------+\r *       | Inspire Internet Relay Chat Daemon |\r *       +------------------------------------+\r *\r *  InspIRCd: (C) 2002-2007 InspIRCd Development Team\r * See: http://www.inspircd.org/wiki/index.php/Credits\r *\r * This program is free but copyrighted software; see\r *            the file COPYING for details.\r *\r * ---------------------------------------------------\r */\r\r#include "inspircd.h"\r#include "configreader.h"\r#include "users.h"\r#include "commands/cmd_user.h"\r\rextern "C" DllExport command_t* init_command(InspIRCd* Instance)\r{\r      return new cmd_user(Instance);\r}\r\rCmdResult cmd_user::Handle (const char** parameters, int pcnt, userrec *user)\r{\r      /* A user may only send the USER command once */\r       if (!(user->registered & REG_USER))\r    {\r              if (!ServerInstance->IsIdent(parameters[0]))\r           {\r                      /*\r                      * RFC says we must use this numeric, so we do. Let's make it a little more nub friendly though. :)\r                     *  -- Craig, and then w00t.\r                    */\r                    user->WriteServ("461 %s USER :Your username is not valid",user->nick);\r                 return CMD_FAILURE;\r            }\r              else\r           {\r                      /* We're not checking ident, but I'm not sure I like the idea of '~' prefixing.. */\r                    /* XXX - The ident field is IDENTMAX+2 in size to account for +1 for the optional\r                       * ~ character, and +1 for null termination, therefore we can safely use up to\r                  * IDENTMAX here.\r                       */\r                    strlcpy(user->ident, parameters[0], IDENTMAX);\r                 strlcpy(user->fullname, *parameters[3] ? parameters[3] : "No info", MAXGECOS);\r                 user->registered = (user->registered | REG_USER);\r              }\r      }\r      else\r   {\r              user->WriteServ("462 %s :You may not reregister",user->nick);\r          return CMD_FAILURE;\r    }\r      /* parameters 2 and 3 are local and remote hosts, ignored when sent by client connection */\r    if (user->registered == REG_NICKUSER)\r  {\r              int MOD_RESULT = 0;\r            /* user is registered now, bit 0 = USER command, bit 1 = sent a NICK command */\r                if (ServerInstance->next_call > ServerInstance->Time() + ServerInstance->Config->dns_timeout)\r                  ServerInstance->next_call = ServerInstance->Time() + ServerInstance->Config->dns_timeout;\r              FOREACH_RESULT(I_OnUserRegister,OnUserRegister(user));\r         if (MOD_RESULT > 0)\r                    return CMD_FAILURE;\r\r   }\r\r     return CMD_SUCCESS;\r}\r