]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/commands/cmd_connect.h
DO NOT USE THIS COMMIT - if you do, most of the modules wont work.
[user/henk/code/inspircd.git] / include / commands / cmd_connect.h
index 203fbe9c0d7b9fed21725fee4540488ce0bce20f..ee9c7342988170e6b3853084d6e93ae6b79b28be 100644 (file)
 #include "ctables.h"
 #include "modules.h"
 
+/** Handle /CONNECT
+ */
 class cmd_connect : public command_t
 {
  public:
         cmd_connect (InspIRCd* Instance) : command_t(Instance,"CONNECT",'o',1) { syntax = "<servername> [<remote-server>]"; }
-        void Handle(const char** parameters, int pcnt, userrec *user);
+        CmdResult Handle(const char** parameters, int pcnt, userrec *user);
 };
 
 #endif