]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/coremods/core_info/cmd_commands.cpp
Check for errors after calling IOHookProvider::OnAccept()
[user/henk/code/inspircd.git] / src / coremods / core_info / cmd_commands.cpp
index 9ae258a9cb67af76def83fc5cbe136aa18e79231..b6cc8e34dae38abe30418b5bf9901be24dbae9e6 100644 (file)
@@ -31,22 +31,22 @@ CommandCommands::CommandCommands(Module* parent)
  */
 CmdResult CommandCommands::Handle (const std::vector<std::string>&, User *user)
 {
+       const CommandParser::CommandMap& commands = ServerInstance->Parser.GetCommands();
        std::vector<std::string> list;
-       list.reserve(ServerInstance->Parser->cmdlist.size());
-       for (Commandtable::iterator i = ServerInstance->Parser->cmdlist.begin(); i != ServerInstance->Parser->cmdlist.end(); i++)
+       list.reserve(commands.size());
+       for (CommandParser::CommandMap::const_iterator i = commands.begin(); i != commands.end(); ++i)
        {
                // Don't show S2S commands to users
                if (i->second->flags_needed == FLAG_SERVERONLY)
                        continue;
 
                Module* src = i->second->creator;
-               list.push_back(InspIRCd::Format(":%s %03d %s :%s %s %d %d", ServerInstance->Config->ServerName.c_str(),
-                       RPL_COMMANDS, user->nick.c_str(), i->second->name.c_str(), src->ModuleSourceFile.c_str(),
+               list.push_back(InspIRCd::Format("%s %s %d %d", i->second->name.c_str(), src->ModuleSourceFile.c_str(),
                        i->second->min_params, i->second->Penalty));
        }
-       sort(list.begin(), list.end());
+       std::sort(list.begin(), list.end());
        for(unsigned int i=0; i < list.size(); i++)
-               user->Write(list[i]);
-       user->WriteNumeric(RPL_COMMANDSEND, ":End of COMMANDS list");
+               user->WriteNumeric(RPL_COMMANDS, list[i]);
+       user->WriteNumeric(RPL_COMMANDSEND, "End of COMMANDS list");
        return CMD_SUCCESS;
 }