diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-12-31 00:06:43 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-12-31 00:06:43 +0000 |
commit | 6e7612767e4809fde98399b41ccea5fe964898d3 (patch) | |
tree | 43b2b64c5e4c0e32e165fbbb3e3e2badb7d3aac5 /src/modules/m_chghost.cpp | |
parent | 8982ea4cf5adc493340e602e2c3290210c7bf110 (diff) |
<hostname:charmap> defines the valid characters in a hostmask (this is for you webs to obsolete your patch :p)
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@6186 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_chghost.cpp')
-rw-r--r-- | src/modules/m_chghost.cpp | 40 |
1 files changed, 26 insertions, 14 deletions
diff --git a/src/modules/m_chghost.cpp b/src/modules/m_chghost.cpp index a5e71ca87..3ce3d37bd 100644 --- a/src/modules/m_chghost.cpp +++ b/src/modules/m_chghost.cpp @@ -25,26 +25,25 @@ */ class cmd_chghost : public command_t { + private: + char*& hostmap; public: - cmd_chghost (InspIRCd* Instance) : command_t(Instance,"CHGHOST",'o',2) + cmd_chghost (InspIRCd* Instance, char* &hmap) : command_t(Instance,"CHGHOST",'o',2), hostmap(hmap) { this->source = "m_chghost.so"; syntax = "<nick> <newhost>"; } - + CmdResult Handle(const char** parameters, int pcnt, userrec *user) { const char * x = parameters[1]; for (; *x; x++) { - if (((tolower(*x) < 'a') || (tolower(*x) > 'z')) && (*x != '.')) + if (!strchr(hostmap, *x)) { - if (((*x < '0') || (*x > '9')) && (*x != '-')) - { - user->WriteServ("NOTICE "+std::string(user->nick)+" :*** Invalid characters in hostname"); - return CMD_FAILURE; - } + user->WriteServ("NOTICE "+std::string(user->nick)+" :*** Invalid characters in hostname"); + return CMD_FAILURE; } } if ((parameters[1] - x) > 63) @@ -71,31 +70,44 @@ class cmd_chghost : public command_t class ModuleChgHost : public Module { cmd_chghost* mycommand; + char* hostmap; + std::string hmap; public: ModuleChgHost(InspIRCd* Me) : Module::Module(Me) { - - mycommand = new cmd_chghost(ServerInstance); + OnRehash(""); + mycommand = new cmd_chghost(ServerInstance, hostmap); ServerInstance->AddCommand(mycommand); } void Implements(char* List) { + List[I_OnRehash] = 1; } - virtual ~ModuleChgHost() + void OnRehash(const std::string ¶meter) + { + ConfigReader Conf(ServerInstance); + hmap = Conf.ReadValue("hostname", "charmap", 0); + + if (hmap.empty()) + hostmap = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz.-_/0123456789"; + else + hostmap = (char*)hmap.c_str(); + } + + ~ModuleChgHost() { } - virtual Version GetVersion() + Version GetVersion() { - return Version(1,1,0,0,VF_VENDOR,API_VERSION); + return Version(1, 1, 0, 0, VF_VENDOR, API_VERSION); } }; -// stuff down here is the module-factory stuff. For basic modules you can ignore this. class ModuleChgHostFactory : public ModuleFactory { |