aboutsummaryrefslogtreecommitdiff
path: root/src/cmd_nick.cpp
diff options
context:
space:
mode:
authorGravatar brain2007-02-19 10:56:51 +0000
committerGravatar brain2007-02-19 10:56:51 +0000
commit5d03b5379f474a70f40f165707dde93161fb3d59 (patch)
tree3d7c889bbb57894148fe1935aa08ef8e2c751d73 /src/cmd_nick.cpp
parentWhen a users nick is overruled, remove their nickname-sent bit from userrec::... (diff)
Too many small tweaks to list. Most notably tidy up info, note that /trace is crap, and improve efficiency of cmd_nick
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@6601 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/cmd_nick.cpp')
-rw-r--r--src/cmd_nick.cpp28
1 files changed, 19 insertions, 9 deletions
diff --git a/src/cmd_nick.cpp b/src/cmd_nick.cpp
index 3d74e591a..4e2c4936c 100644
--- a/src/cmd_nick.cpp
+++ b/src/cmd_nick.cpp
@@ -18,21 +18,21 @@
#include "xline.h"
#include "commands/cmd_nick.h"
-
-
extern "C" command_t* init_command(InspIRCd* Instance)
{
return new cmd_nick(Instance);
}
+/** Handle nick changes from users.
+ * NOTE: If you are used to ircds based on ircd2.8, and are looking
+ * for the client introduction code in here, youre in the wrong place.
+ * You need to look in the spanningtree module for this!
+ */
CmdResult cmd_nick::Handle (const char** parameters, int pcnt, userrec *user)
{
char oldnick[NICKMAX];
- if (!*parameters[0])
- return CMD_FAILURE;
-
- if (!*user->nick)
+ if (!*parameters[0] || !*user->nick)
return CMD_FAILURE;
if (irc::string(user->nick) == irc::string(parameters[0]))
@@ -66,13 +66,24 @@ CmdResult cmd_nick::Handle (const char** parameters, int pcnt, userrec *user)
user->WriteServ("432 %s %s :Invalid nickname: %s",user->nick,parameters[0], mq->reason);
return CMD_FAILURE;
}
- if ((ServerInstance->FindNick(parameters[0])) && (ServerInstance->FindNick(parameters[0]) != user) && (ServerInstance->IsNick(parameters[0])))
+ /* Check for nickname overruled -
+ * This happens when one user has connected and sent only NICK, and is essentially
+ * "camping" upon a nickname. To give the new user connecting a fair chance of having
+ * the nickname too, we force a nickchange on the older user (Simply the one who was
+ * here first, no TS checks need to take place here)
+ */
+ userrec* InUse = ServerInstance->FindNick(parameters[0]);
+ if (InUse && (InUse != user) && (ServerInstance->IsNick(parameters[0])))
{
- userrec* InUse = ServerInstance->FindNick(parameters[0]);
if (InUse->registered != REG_ALL)
{
/* change the nick of the older user to nnn-overruled,
* where nnn is their file descriptor. We know this to be unique.
+ * NOTE: We must do this and not quit the user, even though we do
+ * not have UID support yet. This is because if we set this user
+ * as quitting and then introduce the new user before the old one
+ * has quit, then the user hash gets totally buggered.
+ * (Yes, that is a technical term). -- Brain
*/
std::string changeback = ConvToStr(InUse->GetFd()) + "-overruled";
InUse->WriteTo(InUse, "NICK %s", changeback.c_str());
@@ -150,7 +161,6 @@ CmdResult cmd_nick::Handle (const char** parameters, int pcnt, userrec *user)
{
/* user is registered now, bit 0 = USER command, bit 1 = sent a NICK command */
FOREACH_MOD(I_OnUserRegister,OnUserRegister(user));
- //ConnectUser(user,NULL);
}
if (user->registered == REG_ALL)
{