diff options
Diffstat (limited to 'src/commands/cmd_commands.cpp')
-rw-r--r-- | src/commands/cmd_commands.cpp | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/src/commands/cmd_commands.cpp b/src/commands/cmd_commands.cpp new file mode 100644 index 000000000..68c5a8c78 --- /dev/null +++ b/src/commands/cmd_commands.cpp @@ -0,0 +1,37 @@ +/* +------------------------------------+ + * | Inspire Internet Relay Chat Daemon | + * +------------------------------------+ + * + * InspIRCd: (C) 2002-2007 InspIRCd Development Team + * See: http://www.inspircd.org/wiki/index.php/Credits + * + * This program is free but copyrighted software; see + * the file COPYING for details. + * + * --------------------------------------------------- + */ + +#include "inspircd.h" +#include "commands/cmd_commands.h" + +/** Handle /COMMANDS + */ +extern "C" DllExport Command* init_command(InspIRCd* Instance) +{ + return new CommandCommands(Instance); +} + +CmdResult CommandCommands::Handle (const char** parameters, int pcnt, User *user) +{ + for (Commandable::iterator i = ServerInstance->Parser->cmdlist.begin(); i != ServerInstance->Parser->cmdlist.end(); i++) + { + user->WriteServ("902 %s :%s %s %d %d", + user->nick, + i->second->command.c_str(), + i->second->source.c_str(), + i->second->min_params, + i->second->Penalty); + } + user->WriteServ("903 %s :End of COMMANDS list",user->nick); + return CMD_SUCCESS; +} |