X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fm_sethost.cpp;h=eb2196c92d7f7966d4ec6433bbb337491d23a171;hb=1484a054870bdfe94346057053d5c8e48a708232;hp=f6a9bbf3f190340f87a87f62585b95024cfff021;hpb=3103cfb80135cbc2a0f47566ec0cb88affc7bac1;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_sethost.cpp b/src/modules/m_sethost.cpp index f6a9bbf3f..eb2196c92 100644 --- a/src/modules/m_sethost.cpp +++ b/src/modules/m_sethost.cpp @@ -1,59 +1,83 @@ -/* - * SETHOST module for InspIRCD - * Author: brain - * Version: 1.0.0.0 +/* +------------------------------------+ + * | Inspire Internet Relay Chat Daemon | + * +------------------------------------+ * - * Syntax: /SETHOST [new host] - * Changes the user's DHOST who issues the command - * (oper only) - * + * 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 "helperfuncs.h" /* $ModDesc: Provides support for the SETHOST command */ -Server *Srv; - -void handle_sethost(char **parameters, int pcnt, userrec *user) +static Server *Srv; + +class cmd_sethost : public command_t { - for (int x = 0; x < strlen(parameters[0]); x++) + public: + cmd_sethost() : command_t("SETHOST",'o',1) { - if (((tolower(parameters[0][x]) < 'a') || (tolower(parameters[0][x]) > 'z')) && (parameters[0][x] != '.')) + this->source = "m_sethost.so"; + } + + void Handle (const char** parameters, int pcnt, userrec *user) + { + if (strlen(parameters[0]) > 64) + { + WriteServ(user->fd,"NOTICE %s :*** SETHOST: Host too long",user->nick); + return; + } + for (unsigned int x = 0; x < strlen(parameters[0]); x++) { - if (((parameters[0][x] < '0') || (parameters[0][x]> '9')) && (parameters[0][x] != '-')) + if (((tolower(parameters[0][x]) < 'a') || (tolower(parameters[0][x]) > 'z')) && (parameters[0][x] != '.')) { - Srv->SendTo(NULL,user,"NOTICE "+std::string(user->nick)+" :*** Invalid characters in hostname"); - return; + if (((parameters[0][x] < '0') || (parameters[0][x]> '9')) && (parameters[0][x] != '-')) + { + Srv->SendTo(NULL,user,"NOTICE "+std::string(user->nick)+" :*** Invalid characters in hostname"); + return; + } } } + Srv->ChangeHost(user,parameters[0]); + Srv->SendOpers(std::string(user->nick)+" used SETHOST to change their displayed host to "+std::string(parameters[0])); } - Srv->ChangeHost(user,parameters[0]); - Srv->SendOpers(std::string(user->nick)+" used SETHOST to change their displayed host to "+std::string(parameters[0])); -} +}; class ModuleSetHost : public Module { + cmd_sethost* mycommand; public: - ModuleSetHost() + ModuleSetHost(Server* Me) + : Module::Module(Me) { - Srv = new Server; - Srv->AddCommand("SETHOST",handle_sethost,'o',1); + Srv = Me; + mycommand = new cmd_sethost(); + Srv->AddCommand(mycommand); } virtual ~ModuleSetHost() { - delete Srv; } virtual Version GetVersion() { - return Version(1,0,0,0); + return Version(1,0,0,1,VF_VENDOR); } }; @@ -71,9 +95,9 @@ class ModuleSetHostFactory : public ModuleFactory { } - virtual Module * CreateModule() + virtual Module * CreateModule(Server* Me) { - return new ModuleSetHost; + return new ModuleSetHost(Me); } };