]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/users.cpp
Make nickname-overruled rules change the user back to their uid, not to nnn-unknown
[user/henk/code/inspircd.git] / src / users.cpp
index ccf506697142040fd0d4199e0796e12abe57bd5c..b76df8ac5aea938dea1fbe1618125dbe0a7a8e1c 100644 (file)
@@ -325,8 +325,7 @@ void userrec::DecrementModes()
 
 userrec::userrec(InspIRCd* Instance) : ServerInstance(Instance)
 {
-       // the PROPER way to do it, AVOID bzero at *ALL* costs
-       *password = *nick = *ident = *host = *dhost = *fullname = *awaymsg = *oper = 0;
+       *password = *nick = *ident = *host = *dhost = *fullname = *awaymsg = *oper = *uuid = 0;
        server = (char*)Instance->FindServerNamePtr(Instance->Config->ServerName);
        reset_due = ServerInstance->Time();
        age = ServerInstance->Time(true);
@@ -859,7 +858,9 @@ void userrec::AddToWhoWas()
 /* add a client connection to the sockets list */
 void userrec::AddClient(InspIRCd* Instance, int socket, int port, bool iscached, int socketfamily, sockaddr* ip)
 {
-       std::string tempnick = ConvToStr(socket) + "-unknown";
+       std::string tempnick = Instance->GetUID();
+
+       Instance->Log(DEBUG,"New client has UID %s ..", tempnick.c_str());
        user_hash::iterator iter = Instance->clientlist->find(tempnick);
        char ipaddr[MAXBUF];
 #ifdef IPV6
@@ -892,7 +893,8 @@ void userrec::AddClient(InspIRCd* Instance, int socket, int port, bool iscached,
        New = new userrec(Instance);
        (*(Instance->clientlist))[tempnick] = New;
        New->fd = socket;
-       strlcpy(New->nick,tempnick.c_str(),NICKMAX-1);
+       strlcpy(New->nick, tempnick.c_str(), NICKMAX - 1);
+       strlcpy(New->uuid, tempnick.c_str(), UUID_LENGTH);
 
        New->server = Instance->FindServerNamePtr(Instance->Config->ServerName);
        /* We don't need range checking here, we KNOW 'unknown\0' will fit into the ident field. */
@@ -1099,6 +1101,9 @@ void userrec::FullConnect()
 
        ServerInstance->Config->Send005(this);
 
+       this->WriteServ("042 %s %s :your unique ID", this->nick, this->uuid);
+
+
        this->ShowMOTD();
 
        /* Now registered */