diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-12-16 18:33:06 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-12-16 18:33:06 +0000 |
commit | 2e2d1fae4844088f7e0b9a71116e0eb3e149e4cc (patch) | |
tree | 544f6f31ec2c6f7714ebc4614a5623f6e6ec8a69 /src/modules/m_sethost.cpp | |
parent | ab9d8fd1af3ebf028506ec543f74fd13471742dd (diff) |
Moved to new command system
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@2536 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_sethost.cpp')
-rw-r--r-- | src/modules/m_sethost.cpp | 33 |
1 files changed, 22 insertions, 11 deletions
diff --git a/src/modules/m_sethost.cpp b/src/modules/m_sethost.cpp index cdb01de4d..0894e8f24 100644 --- a/src/modules/m_sethost.cpp +++ b/src/modules/m_sethost.cpp @@ -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() |