]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/cmd_nick.cpp
Removed some debug notices that were mistakenly in the DEFAULT loglevel
[user/henk/code/inspircd.git] / src / cmd_nick.cpp
index 33960463b8b06fdf1cd5c5ce0e882a857b8f3927..31f0943e7a10062793d17812c03c467c89048503 100644 (file)
@@ -2,10 +2,10 @@
  *       | Inspire Internet Relay Chat Daemon |
  *       +------------------------------------+
  *
- *  Inspire is copyright (C) 2002-2005 ChatSpike-Dev.
+ *  InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
  *                       E-mail:
- *                <brain.net>
- *                <Craig.net>
+ *                <brain@chatspike.net>
+ *                <Craig@chatspike.net>
  *
  * Written by Craig Edwards, Craig McLure, and others.
  * This program is free but copyrighted software; see
@@ -61,7 +61,7 @@ extern chan_hash chanlist;
 extern whowas_hash whowas;
 extern std::vector<userrec*> all_opers;
 extern std::vector<userrec*> local_users;
-extern userrec* fd_ref_table[65536];
+extern userrec* fd_ref_table[MAX_DESCRIPTORS];
 
 void cmd_nick::Handle (char **parameters, int pcnt, userrec *user)
 {
@@ -94,16 +94,23 @@ void cmd_nick::Handle (char **parameters, int pcnt, userrec *user)
        }
        if (irc::string(user->nick) == irc::string(parameters[0]))
        {
+               /* If its exactly the same, even case, dont do anything. */
+               if (!strcmp(user->nick,parameters[0]))
+                       return;
+               /* Its a change of case. People insisted that they should be
+                * able to do silly things like this even though the RFC says
+                * the nick AAA is the same as the nick aaa.
+                */
                log(DEBUG,"old nick is new nick, not updating hash (case change only)");
                strlcpy(oldnick,user->nick,NICKMAX);
                int MOD_RESULT = 0;
-               FOREACH_RESULT(OnUserPreNick(user,parameters[0]));
+               FOREACH_RESULT(I_OnUserPreNick,OnUserPreNick(user,parameters[0]));
                if (MOD_RESULT)
                        return;
-               strlcpy(user->nick,parameters[0],NICKMAX);
                if (user->registered == 7)
                        WriteCommon(user,"NICK %s",parameters[0]);
-               FOREACH_MOD OnUserPostNick(user,oldnick);
+               strlcpy(user->nick,parameters[0],NICKMAX);
+               FOREACH_MOD(I_OnUserPostNick,OnUserPostNick(user,oldnick));
                return;
        }
        else
@@ -136,7 +143,7 @@ void cmd_nick::Handle (char **parameters, int pcnt, userrec *user)
        if (user->registered == 7)
        {
                int MOD_RESULT = 0;
-               FOREACH_RESULT(OnUserPreNick(user,parameters[0]));
+               FOREACH_RESULT(I_OnUserPreNick,OnUserPreNick(user,parameters[0]));
                if (MOD_RESULT) {
                        // if a module returns true, the nick change is silently forbidden.
                        return;
@@ -183,12 +190,12 @@ void cmd_nick::Handle (char **parameters, int pcnt, userrec *user)
        if (user->registered == 3)
        {
                /* user is registered now, bit 0 = USER command, bit 1 = sent a NICK command */
-               FOREACH_MOD OnUserRegister(user);
-               ConnectUser(user);
+               FOREACH_MOD(I_OnUserRegister,OnUserRegister(user));
+               //ConnectUser(user,NULL);
        }
        if (user->registered == 7)
        {
-               FOREACH_MOD OnUserPostNick(user,oldnick);
+               FOREACH_MOD(I_OnUserPostNick,OnUserPostNick(user,oldnick));
        }
 }