]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/commands/cmd_links.cpp
Fixes for bug #12
[user/henk/code/inspircd.git] / src / commands / cmd_links.cpp
index f216dbc2cc030bb26d7186c1cb4d82da7f793c48..e48d452cd61131a7f94bdf5d7f2e7267c3b14990 100644 (file)
@@ -2,8 +2,8 @@
  *       | Inspire Internet Relay Chat Daemon |
  *       +------------------------------------+
  *
- *  InspIRCd: (C) 2002-2007 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.
  */
 
 #include "inspircd.h"
-#include "commands/cmd_links.h"
 
-extern "C" DllExport Command* init_command(InspIRCd* Instance)
+#ifndef CMD_LINKS_H
+#define CMD_LINKS_H
+
+// include the common header files
+
+#include "users.h"
+#include "channels.h"
+
+/** Handle /LINKS. 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 CommandLinks : public Command
 {
-       return new CommandLinks(Instance);
-}
+ public:
+       /** Constructor for links.
+        */
+       CommandLinks ( Module* parent) : Command(parent,"LINKS",0,0) { }
+       /** 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 /LINKS
  */
-CmdResult CommandLinks::Handle (const char**, int, User *user)
+CmdResult CommandLinks::Handle (const std::vector<std::string>&, User *user)
 {
-       user->WriteServ("364 %s %s %s :0 %s",user->nick,ServerInstance->Config->ServerName,ServerInstance->Config->ServerName,ServerInstance->Config->ServerDesc);
-       user->WriteServ("365 %s * :End of /LINKS list.",user->nick);
+       user->WriteNumeric(364, "%s %s %s :0 %s",user->nick.c_str(),ServerInstance->Config->ServerName.c_str(),ServerInstance->Config->ServerName.c_str(),ServerInstance->Config->ServerDesc.c_str());
+       user->WriteNumeric(365, "%s * :End of /LINKS list.",user->nick.c_str());
        return CMD_SUCCESS;
 }
+
+COMMAND_INIT(CommandLinks)