summaryrefslogtreecommitdiff
path: root/src/commands/cmd_info.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/commands/cmd_info.cpp')
-rw-r--r--src/commands/cmd_info.cpp35
1 files changed, 31 insertions, 4 deletions
diff --git a/src/commands/cmd_info.cpp b/src/commands/cmd_info.cpp
index 286e64f61..43f8286f2 100644
--- a/src/commands/cmd_info.cpp
+++ b/src/commands/cmd_info.cpp
@@ -12,12 +12,37 @@
*/
#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 (InspIRCd* Instance, Module* parent) : Command(Instance,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
*/
@@ -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)