]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_setname.cpp
Added ability to send and receive a challenge, dont do anything with it yet
[user/henk/code/inspircd.git] / src / modules / m_setname.cpp
index 892d934c0f5f28a14ba16e5e4ea6d2328807b0f4..bb78d6a0f29b9b42877aa9e1763e3b0d0b34f639 100644 (file)
@@ -2,48 +2,47 @@
  *       | Inspire Internet Relay Chat Daemon |
  *       +------------------------------------+
  *
- *  Inspire is copyright (C) 2002-2004 ChatSpike-Dev.
- *                       E-mail:
- *                <brain@chatspike.net>
- *               <Craig@chatspike.net>
- *     
- * Written by Craig Edwards, Craig McLure, and others.
+ *  InspIRCd: (C) 2002-2007 InspIRCd Development Team
+ * See: http://www.inspircd.org/wiki/index.php/Credits
+ *
  * This program is free but copyrighted software; see
  *            the file COPYING for details.
  *
  * ---------------------------------------------------
  */
 
-using namespace std;
-
 #include <stdio.h>
 #include <string>
 #include "users.h"
 #include "channels.h"
 #include "modules.h"
-#include "helperfuncs.h"
+
+#include "inspircd.h"
 
 /* $ModDesc: Provides support for the SETNAME command */
 
-Server *Srv;
+
 
 class cmd_setname : public command_t
 {
  public:
-       cmd_setname () : command_t("SETNAME", 0, 1);
+       cmd_setname (InspIRCd* Instance) : command_t(Instance,"SETNAME", 0, 1)
        {
                this->source = "m_setname.so";
+               syntax = "<new-gecos>";
        }
 
-       void Handle (char **parameters, int pcnt, userrec *user)
+       CmdResult Handle (const char** parameters, int pcnt, userrec *user)
        {
                std::string line = "";
                for (int i = 0; i < pcnt-1; i++)
                {
-                       line = line + std::string(parameters[i]);
+                       line = line + std::string(parameters[i]) + " ";
                }
                line = line + std::string(parameters[pcnt-1]);
-               Srv->ChangeGECOS(user,line);
+               user->ChangeName(line.c_str());
+
+               return CMD_SUCCESS;
        }
 };
 
@@ -52,12 +51,12 @@ class ModuleSetName : public Module
 {
        cmd_setname*    mycommand;
  public:
-       ModuleSetName(Server* Me)
+       ModuleSetName(InspIRCd* Me)
                : Module::Module(Me)
        {
-               Srv = Me;
-               mycommand = new cmd_setname();
-               Srv->AddCommand(mycommand);
+               
+               mycommand = new cmd_setname(ServerInstance);
+               ServerInstance->AddCommand(mycommand);
        }
        
        virtual ~ModuleSetName()
@@ -66,7 +65,7 @@ class ModuleSetName : public Module
        
        virtual Version GetVersion()
        {
-               return Version(1,0,0,1,VF_VENDOR);
+               return Version(1,1,0,1,VF_VENDOR,API_VERSION);
        }
        
 };
@@ -84,7 +83,7 @@ class ModuleSetNameFactory : public ModuleFactory
        {
        }
        
-       virtual Module * CreateModule(Server* Me)
+       virtual Module * CreateModule(InspIRCd* Me)
        {
                return new ModuleSetName(Me);
        }