]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/commands/cmd_server.cpp
More numerics.h conversion
[user/henk/code/inspircd.git] / src / commands / cmd_server.cpp
index 282f4eec5e0e1a4ed7bb9d7267587b9aeb33bac4..811d59057507162559e76b6c449c5b83cc576f91 100644 (file)
@@ -21,9 +21,15 @@ extern "C" DllExport Command* init_command(InspIRCd* Instance)
        return new CommandServer(Instance);
 }
 
-CmdResult CommandServer::Handle (const char**, int, User *user)
+CmdResult CommandServer::Handle (const std::vector<std::string>&, User *user)
 {
-       user->WriteServ("666 %s :You cannot identify as a server, you are a USER. IRC Operators informed.",user->nick);
-       ServerInstance->SNO->WriteToSnoMask('A', "WARNING: %s attempted to issue a SERVER command and is registered as a user!", user->nick);
+       if (user->registered == REG_ALL)
+       {
+               user->WriteNumeric(ERR_ALREADYREGISTERED, "%s :You are already registered. (Perhaps your IRC client does not have a /SERVER command).",user->nick.c_str());
+       }
+       else
+       {
+               user->WriteNumeric(ERR_NOTREGISTERED, "%s :You may not register as a server (servers have seperate ports from clients, change your config)",command.c_str());
+       }
        return CMD_FAILURE;
 }