X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fcommands%2Fcmd_topic.cpp;h=2b1e7acfbb5875b6fe67373d39f7e37dd7b1479a;hb=2f8303334f2c5a62bcce47d39e8cf41208a9a296;hp=da5e253030315972fe627966f8a5a1206c590ef0;hpb=43847ec9c7e1a195163eb4c529f1c92fd1ace0a4;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/commands/cmd_topic.cpp b/src/commands/cmd_topic.cpp index da5e25303..2b1e7acfb 100644 --- a/src/commands/cmd_topic.cpp +++ b/src/commands/cmd_topic.cpp @@ -2,8 +2,8 @@ * | Inspire Internet Relay Chat Daemon | * +------------------------------------+ * - * InspIRCd: (C) 2002-2009 InspIRCd Development Team - * See: http://www.inspircd.org/wiki/index.php/Credits + * InspIRCd: (C) 2002-2010 InspIRCd Development Team + * See: http://wiki.inspircd.org/Credits * * This program is free but copyrighted software; see * the file COPYING for details. @@ -12,13 +12,26 @@ */ #include "inspircd.h" -#include "commands/cmd_topic.h" - -extern "C" DllExport Command* init_command(InspIRCd* Instance) +/** Handle /TOPIC. These command handlers can be reloaded by the core, + * and handle basic RFC1459 commands. Commands within modules work + * the same way, however, they can be fully unloaded, where these + * may not. + */ +class CommandTopic : public Command { - return new CommandTopic(Instance); -} + public: + /** Constructor for topic. + */ + CommandTopic ( Module* parent) : Command(parent,"TOPIC",1, 2) { syntax = " []"; Penalty = 2; } + /** Handle command. + * @param parameters The parameters to the comamnd + * @param pcnt The number of parameters passed to teh command + * @param user The user issuing the command + * @return A value from CmdResult to indicate command success or failure. + */ + CmdResult Handle(const std::vector& parameters, User *user); +}; CmdResult CommandTopic::Handle (const std::vector& parameters, User *user) { @@ -48,7 +61,7 @@ CmdResult CommandTopic::Handle (const std::vector& parameters, User } else { - user->WriteNumeric(331, "%s %s :No topic is set.", user->nick.c_str(), c->name.c_str()); + user->WriteNumeric(RPL_NOTOPICSET, "%s %s :No topic is set.", user->nick.c_str(), c->name.c_str()); } } return CMD_SUCCESS; @@ -62,3 +75,5 @@ CmdResult CommandTopic::Handle (const std::vector& parameters, User return CMD_SUCCESS; } + +COMMAND_INIT(CommandTopic)