X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fm_sethost.cpp;h=eb2196c92d7f7966d4ec6433bbb337491d23a171;hb=3a7023f2c595d14778b3f1f7e53d3914698dd500;hp=d4f8a4f1d916d5a19f046ea12e66d11289ef4fae;hpb=f96ddd39748f283768217fb1a3cdd3a7cbde353a;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_sethost.cpp b/src/modules/m_sethost.cpp index d4f8a4f1d..eb2196c92 100644 --- a/src/modules/m_sethost.cpp +++ b/src/modules/m_sethost.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: * * @@ -25,38 +25,54 @@ using namespace std; /* $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 (unsigned int x = 0; x < strlen(parameters[0]); x++) + public: + cmd_sethost() : command_t("SETHOST",'o',1) + { + this->source = "m_sethost.so"; + } + + void Handle (const char** parameters, int pcnt, userrec *user) { - if (((tolower(parameters[0][x]) < 'a') || (tolower(parameters[0][x]) > 'z')) && (parameters[0][x] != '.')) + if (strlen(parameters[0]) > 64) { - if (((parameters[0][x] < '0') || (parameters[0][x]> '9')) && (parameters[0][x] != '-')) + WriteServ(user->fd,"NOTICE %s :*** SETHOST: Host too long",user->nick); + return; + } + for (unsigned int x = 0; x < strlen(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,"m_sethost.so"); + Srv = Me; + mycommand = new cmd_sethost(); + Srv->AddCommand(mycommand); } virtual ~ModuleSetHost() { - delete Srv; } virtual Version GetVersion() @@ -79,9 +95,9 @@ class ModuleSetHostFactory : public ModuleFactory { } - virtual Module * CreateModule() + virtual Module * CreateModule(Server* Me) { - return new ModuleSetHost; + return new ModuleSetHost(Me); } };