X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fm_setname.cpp;h=d8cb309278754b40c406d7c18145ea0053e1cace;hb=4cb2be033bbb0eafc7ee4fa579daf7ccaca8860b;hp=110afbe518fc4d95a02b06b9c72dce5888106f02;hpb=740b09e2aee345c6fde199986d8eab6e0db224e3;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_setname.cpp b/src/modules/m_setname.cpp index 110afbe51..d8cb30927 100644 --- a/src/modules/m_setname.cpp +++ b/src/modules/m_setname.cpp @@ -2,7 +2,7 @@ * | Inspire Internet Relay Chat Daemon | * +------------------------------------+ * - * Inspire is copyright (C) 2002-2004 ChatSpike-Dev. + * InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev. * E-mail: * * @@ -14,45 +14,59 @@ * --------------------------------------------------- */ +using namespace std; + #include #include #include "users.h" #include "channels.h" #include "modules.h" +#include "helperfuncs.h" /* $ModDesc: Provides support for the SETNAME command */ Server *Srv; - -void handle_setname(char **parameters, int pcnt, userrec *user) + +class cmd_setname : public command_t { - std::string line = ""; - for (int i = 0; i < pcnt-1; i++) + public: + cmd_setname () : command_t("SETNAME", 0, 1) { - line = line + std::string(parameters[i]); + this->source = "m_setname.so"; } - line = line + std::string(parameters[pcnt-1]); - Srv->ChangeGECOS(user,line); -} + + void Handle (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[pcnt-1]); + Srv->ChangeGECOS(user,line); + } +}; class ModuleSetName : public Module { + cmd_setname* mycommand; public: - ModuleSetName() + ModuleSetName(Server* Me) + : Module::Module(Me) { - Srv = new Server; - Srv->AddCommand("SETNAME",handle_setname,0,1); + Srv = Me; + mycommand = new cmd_setname(); + Srv->AddCommand(mycommand); } virtual ~ModuleSetName() { - delete Srv; } virtual Version GetVersion() { - return Version(1,0,0,0); + return Version(1,0,0,1,VF_VENDOR); } }; @@ -70,9 +84,9 @@ class ModuleSetNameFactory : public ModuleFactory { } - virtual Module * CreateModule() + virtual Module * CreateModule(Server* Me) { - return new ModuleSetName; + return new ModuleSetName(Me); } };