]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/commands/cmd_reloadmodule.h
There is absolutely no need to cache connect timeout.
[user/henk/code/inspircd.git] / include / commands / cmd_reloadmodule.h
index 3ab68ea4213611b8ca8bff58e6790aa9b74f668a..df221952ec15c2535f55b62af1e001193182762c 100644 (file)
@@ -29,14 +29,14 @@ class CommandReloadmodule : public Command
  public:
        /** Constructor for reloadmodule.
         */
-       CommandReloadmodule (InspIRCd* Instance) : Command(Instance,"RELOADMODULE",'o',1) { syntax = "<modulename>"; }
+       CommandReloadmodule (InspIRCd* Instance) : Command(Instance,"RELOADMODULE","o",1) { syntax = "<modulename>"; }
        /** 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 char** parameters, int pcnt, User *user);
+       CmdResult Handle(const std::vector<std::string>& parameters, User *user);
 };
 
 #endif