diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-12-31 02:45:21 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-12-31 02:45:21 +0000 |
commit | 138fb540716d12bf1f89ec484d3210d921f9f3f7 (patch) | |
tree | a076532a6074b024535cd769aa80e555f09d3fa1 /src/modules/m_sethost.cpp | |
parent | 52c02f79a1bc7806b5a664031780d2e10e953db9 (diff) |
Make this new idea O(1) instead of O(x*y)
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@6189 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_sethost.cpp')
-rw-r--r-- | src/modules/m_sethost.cpp | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/src/modules/m_sethost.cpp b/src/modules/m_sethost.cpp index f05d2c8a4..0e116888c 100644 --- a/src/modules/m_sethost.cpp +++ b/src/modules/m_sethost.cpp @@ -39,7 +39,7 @@ class cmd_sethost : public command_t size_t len = 0; for (const char* x = parameters[0]; *x; x++, len++) { - if (!strchr(hostmap, *x)) + if (!hostmap[(unsigned char)*x]) { user->WriteServ("NOTICE "+std::string(user->nick)+" :*** Invalid characters in hostname"); return CMD_FAILURE; @@ -65,11 +65,11 @@ class ModuleSetHost : public Module { cmd_sethost* mycommand; char* hostmap; - std::string hmap; public: ModuleSetHost(InspIRCd* Me) : Module::Module(Me) { + hostmap = new char[256]; OnRehash(""); mycommand = new cmd_sethost(ServerInstance, hostmap); ServerInstance->AddCommand(mycommand); @@ -83,16 +83,19 @@ class ModuleSetHost : public Module void OnRehash(const std::string ¶meter) { ConfigReader Conf(ServerInstance); - hmap = Conf.ReadValue("hostname", "charmap", 0); + std::string hmap = Conf.ReadValue("hostname", "charmap", 0); if (hmap.empty()) - hostmap = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz.-_/0123456789"; - else - hostmap = (char*)hmap.c_str(); + hmap = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz.-_/0123456789"; + + memset(&hostmap, 0, sizeof(hostmap)); + for (std::string::iterator n = hmap.begin(); n != hmap.end(); n++) + hostmap[(unsigned char)*n] = 1; } virtual ~ModuleSetHost() { + delete[] hostmap; } virtual Version GetVersion() |