]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/commands/cmd_ping.h
DO NOT USE THIS COMMIT - if you do, most of the modules wont work.
[user/henk/code/inspircd.git] / include / commands / cmd_ping.h
index 2ad2aca682a89b0728618b418047bfb214c70ecd..eaf0fe4dc36a51c25a24fde5af15609c728a6c08 100644 (file)
 #include "users.h"
 #include "channels.h"
 
+/** Handle /PING
+ */
 class cmd_ping : public command_t
 {
  public:
         cmd_ping (InspIRCd* Instance) : command_t(Instance,"PING",0,1) { syntax = "<servername> [:<servername>]"; }
-        void Handle(const char** parameters, int pcnt, userrec *user);
+        CmdResult Handle(const char** parameters, int pcnt, userrec *user);
 };
 
 #endif