]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/commands/cmd_info.cpp
More WriteGlobalSno conversions in rehash, patch by dKingston
[user/henk/code/inspircd.git] / src / commands / cmd_info.cpp
index e0557df4d932bb79387c9f6c0413bbff6c5e0420..f239b9f78aae722c6b1489e2607ec23de2929eaa 100644 (file)
@@ -3,7 +3,7 @@
  *       +------------------------------------+
  *
  *  InspIRCd: (C) 2002-2009 InspIRCd Development Team
- * See: http://www.inspircd.org/wiki/index.php/Credits
+ * See: http://wiki.inspircd.org/Credits
  *
  * This program is free but copyrighted software; see
  *            the file COPYING for details.
  */
 
 #include "inspircd.h"
-#include "commands/cmd_info.h"
 
-extern "C" DllExport Command* init_command(InspIRCd* Instance)
+#ifndef __CMD_INFO_H__
+#define __CMD_INFO_H__
+
+// include the common header files
+
+#include "users.h"
+#include "channels.h"
+
+/** Handle /INFO. 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 CommandInfo : public Command
 {
-       return new CommandInfo(Instance);
-}
+ public:
+       /** Constructor for info.
+        */
+       CommandInfo ( Module* parent) : Command(parent,"INFO",0,0) { syntax = "[<servermask>]"; }
+       /** 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<std::string>& parameters, User *user);
+};
+
+#endif
+
 
 /** Handle /INFO
  */
@@ -40,7 +65,7 @@ CmdResult CommandInfo::Handle (const std::vector<std::string>&, User *user)
        user->WriteNumeric(RPL_INFO, "%s : ", user->nick.c_str());
        user->WriteNumeric(RPL_INFO, "%s :\2Regular Contributors\2:", user->nick.c_str());
        user->WriteNumeric(RPL_INFO, "%s :    Majic          MacGyver        Namegduf       Ankit", user->nick.c_str());
-       user->WriteNumeric(RPL_INFO, "%s :    Phoenix", user->nick.c_str());
+       user->WriteNumeric(RPL_INFO, "%s :    Phoenix        Taros", user->nick.c_str());
        user->WriteNumeric(RPL_INFO, "%s : ", user->nick.c_str());
        user->WriteNumeric(RPL_INFO, "%s :\2Other Contributors\2:", user->nick.c_str());
        user->WriteNumeric(RPL_INFO, "%s :   dmb             Zaba            skenmy         GreenReaper", user->nick.c_str());
@@ -62,3 +87,5 @@ CmdResult CommandInfo::Handle (const std::vector<std::string>&, User *user)
        user->WriteNumeric(RPL_ENDOFINFO, "%s :End of /INFO list", user->nick.c_str());
        return CMD_SUCCESS;
 }
+
+COMMAND_INIT(CommandInfo)