X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fm_sethost.cpp;h=149795696cbf408618f8e04f6e625e8228c4894f;hb=4cb2be033bbb0eafc7ee4fa579daf7ccaca8860b;hp=cdb01de4dfeb811385bc2424fb8c2843dd41f1bd;hpb=2d821f2980825be73e3f90b47ffff365b0ec5ecb;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_sethost.cpp b/src/modules/m_sethost.cpp index cdb01de4d..149795696 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: * * @@ -26,33 +26,44 @@ using namespace std; /* $ModDesc: Provides support for the SETHOST command */ Server *Srv; - -void handle_sethost(char **parameters, int pcnt, userrec *user) + +class cmd_sethost : public command_t { - for (unsigned 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 (char **parameters, int pcnt, userrec *user) + { + 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(Server* Me) : Module::Module(Me) { Srv = Me; - Srv->AddCommand("SETHOST",handle_sethost,'o',1,"m_sethost.so"); + mycommand = new cmd_sethost(); + Srv->AddCommand(mycommand); } virtual ~ModuleSetHost()