X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fm_setname.cpp;h=bb78d6a0f29b9b42877aa9e1763e3b0d0b34f639;hb=be36d92f3dcb0ac3772daebff43a5ecfe0a2d364;hp=4c44fd6b0206a0625fa5769037433ad308aca092;hpb=9fc9227cf51585dd2e44c2fcd0014c8da8f8739f;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_setname.cpp b/src/modules/m_setname.cpp index 4c44fd6b0..bb78d6a0f 100644 --- a/src/modules/m_setname.cpp +++ b/src/modules/m_setname.cpp @@ -2,12 +2,9 @@ * | Inspire Internet Relay Chat Daemon | * +------------------------------------+ * - * Inspire is copyright (C) 2002-2004 ChatSpike-Dev. - * E-mail: - * - * - * - * 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. * @@ -20,39 +17,55 @@ #include "channels.h" #include "modules.h" +#include "inspircd.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 (InspIRCd* Instance) : command_t(Instance,"SETNAME", 0, 1) { - line = line + std::string(parameters[i]); + this->source = "m_setname.so"; + syntax = ""; } - line = line + std::string(parameters[pcnt-1]); - Srv->ChangeGECOS(user,line); -} + + 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[pcnt-1]); + user->ChangeName(line.c_str()); + + return CMD_SUCCESS; + } +}; class ModuleSetName : public Module { + cmd_setname* mycommand; public: - ModuleSetName() + ModuleSetName(InspIRCd* Me) + : Module::Module(Me) { - Srv = new Server; - Srv->AddCommand("SETNAME",handle_setname,0,1,"m_setname.so"); + + mycommand = new cmd_setname(ServerInstance); + ServerInstance->AddCommand(mycommand); } virtual ~ModuleSetName() { - delete Srv; } virtual Version GetVersion() { - return Version(1,0,0,0,0); + return Version(1,1,0,1,VF_VENDOR,API_VERSION); } }; @@ -70,9 +83,9 @@ class ModuleSetNameFactory : public ModuleFactory { } - virtual Module * CreateModule() + virtual Module * CreateModule(InspIRCd* Me) { - return new ModuleSetName; + return new ModuleSetName(Me); } };