]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_chgident.cpp
All modules which implement simplemodes (no parameters, not a list mode) can now...
[user/henk/code/inspircd.git] / src / modules / m_chgident.cpp
index 391f4b20bcc25447da135f493d66f98e38d20ec6..a658e17930f3f0ad0306710632c1098ffb957f4a 100644 (file)
@@ -1,22 +1,19 @@
 #include <string>
 #include "users.h"
 #include "modules.h"
-#include "message.h"
-#include "helperfuncs.h"
+
 #include "inspircd.h"
 
 /* $ModDesc: Provides support for the CHGIDENT command */
 
-extern InspIRCd* ServerInstance;
+
 
 class cmd_chgident : public command_t
 {
-       Server* Srv;
  public:
-       cmd_chgident(Server* serv) : command_t("CHGIDENT", 'o', 2)
+       cmd_chgident (InspIRCd* Instance) : command_t(Instance,"CHGIDENT", 'o', 2)
        {
                this->source = "m_chgident.so";
-               Srv = serv;
                syntax = "<nick> <newident>";
        }
        
@@ -26,14 +23,15 @@ class cmd_chgident : public command_t
 
                if(dest)
                {
-                       if(!isident(parameters[1]))
+                       if(!ServerInstance->IsIdent(parameters[1]))
                        {
                                user->WriteServ("NOTICE %s :*** Invalid characters in ident", user->nick);
                                return;
                        }
                
                        ServerInstance->WriteOpers("%s used CHGIDENT to change %s's ident from '%s' to '%s'", user->nick, dest->nick, dest->ident, parameters[1]);
-                       strlcpy(dest->ident, parameters[1], IDENTMAX+2);
+                       dest->ChangeIdent(parameters[1]);
+                       //strlcpy(dest->ident, parameters[1], IDENTMAX+2);
                }
                else
                {
@@ -47,11 +45,12 @@ class ModuleChgIdent : public Module
 {
        cmd_chgident* mycommand;
        
+       
 public:
-       ModuleChgIdent(Server* Me) : Module::Module(Me)
+       ModuleChgIdent(InspIRCd* Me) : Module::Module(Me)
        {
-               mycommand = new cmd_chgident(Me);
-               Me->AddCommand(mycommand);
+               mycommand = new cmd_chgident(ServerInstance);
+               ServerInstance->AddCommand(mycommand);
        }
        
        virtual ~ModuleChgIdent()
@@ -78,7 +77,7 @@ class ModuleChgIdentFactory : public ModuleFactory
        {
        }
        
-       virtual Module * CreateModule(Server* Me)
+       virtual Module * CreateModule(InspIRCd* Me)
        {
                return new ModuleChgIdent(Me);
        }