]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/commands/cmd_user.h
DO NOT USE THIS COMMIT - if you do, most of the modules wont work.
[user/henk/code/inspircd.git] / include / commands / cmd_user.h
index 919078193e648810bb1a3e72141a3135e2f130ba..e7b9784bdfb08187b8ed49e72e4b54d0c7b1c034 100644 (file)
 #include "users.h"
 #include "channels.h"
 
+/** Handle /USER
+ */
 class cmd_user : public command_t
 {
  public:
-        cmd_user (InspIRCd* Instance) : command_t(Instance,"USER",0,4) { syntax = "<username> <localhost> <remotehost> <GECOS>"; }
-        void Handle(const char** parameters, int pcnt, userrec *user);
+        cmd_user (InspIRCd* Instance) : command_t(Instance,"USER",0,4,true) { syntax = "<username> <localhost> <remotehost> <GECOS>"; }
+        CmdResult Handle(const char** parameters, int pcnt, userrec *user);
 };
 
 #endif