X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fm_setname.cpp;h=25269d1c420784f6e901604abcd7fb6e36770153;hb=d54fd9b1e6b31f69332a9241b5f17330c0ad61e0;hp=9ce02b37c0166a8dc36dd7437f32f8736cfc67b3;hpb=0eaa401787b9f6e0738df706a69cd8e5423ecb59;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_setname.cpp b/src/modules/m_setname.cpp index 9ce02b37c..25269d1c4 100644 --- a/src/modules/m_setname.cpp +++ b/src/modules/m_setname.cpp @@ -1,52 +1,74 @@ -/* - * SETNAME module for InspIRCD - * Author: brain - * Version: 1.0.0.0 +/* +------------------------------------+ + * | Inspire Internet Relay Chat Daemon | + * +------------------------------------+ * - * Syntax: /SETNAME [new name] - * Changes the user's GECOS who issues the command - * + * InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev. + * E-mail: + * + * + * + * Written by Craig Edwards, Craig McLure, and others. + * This program is free but copyrighted software; see + * the file COPYING for details. + * + * --------------------------------------------------- */ +using namespace std; + #include #include #include "users.h" #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]); - strncpy(user->fullname,line.c_str(),127); -} + + void 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()); + } +}; 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); + + mycommand = new cmd_setname(ServerInstance); + ServerInstance->AddCommand(mycommand); } virtual ~ModuleSetName() { - delete Srv; } virtual Version GetVersion() { - return Version(1,0,0,0); + return Version(1,0,0,1,VF_VENDOR); } }; @@ -64,9 +86,9 @@ class ModuleSetNameFactory : public ModuleFactory { } - virtual Module * CreateModule() + virtual Module * CreateModule(InspIRCd* Me) { - return new ModuleSetName; + return new ModuleSetName(Me); } };