diff options
author | danieldg <danieldg@e03df62e-2008-0410-955e-edbf42e46eb7> | 2010-01-19 02:28:30 +0000 |
---|---|---|
committer | danieldg <danieldg@e03df62e-2008-0410-955e-edbf42e46eb7> | 2010-01-19 02:28:30 +0000 |
commit | 0429d86a7afa7d5c1e27e48f27db0687d2688d87 (patch) | |
tree | b25b6bfbc41f67156a7a5b4d9b4cca34e3a9f26d /src/modules/m_operjoin.cpp | |
parent | 066cad22e48e111de9a993c9ebaddb275b773a75 (diff) |
Clean up some slow iterations
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@12300 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_operjoin.cpp')
-rw-r--r-- | src/modules/m_operjoin.cpp | 24 |
1 files changed, 5 insertions, 19 deletions
diff --git a/src/modules/m_operjoin.cpp b/src/modules/m_operjoin.cpp index 0c8975247..52901fe6f 100644 --- a/src/modules/m_operjoin.cpp +++ b/src/modules/m_operjoin.cpp @@ -20,7 +20,6 @@ class ModuleOperjoin : public Module private: std::string operChan; std::vector<std::string> operChans; - std::map<std::string, std::vector<std::string> > operTypeChans; // Channels specific to an oper type. bool override; int tokenize(const std::string &str, std::vector<std::string> &tokens) @@ -60,18 +59,6 @@ class ModuleOperjoin : public Module operChans.clear(); if (!operChan.empty()) tokenize(operChan,operChans); - - std::map<std::string, std::vector<std::string> >().swap(operTypeChans); - - int olines = conf.Enumerate("type"); - for (int index = 0; index < olines; ++index) - { - std::string chanList = conf.ReadValue("type", "autojoin", index); - if (!chanList.empty()) - { - tokenize(chanList, operTypeChans[conf.ReadValue("type", "name", index)]); - } - } } virtual ~ModuleOperjoin() @@ -92,12 +79,12 @@ class ModuleOperjoin : public Module if (ServerInstance->IsChannel(it->c_str(), ServerInstance->Config->Limits.ChanMax)) Channel::JoinUser(user, it->c_str(), override, "", false, ServerInstance->Time()); - std::map<std::string, std::vector<std::string> >::iterator i = operTypeChans.find(user->oper->name); - - if (i != operTypeChans.end()) + std::string chanList = IS_OPER(user)->getConfig("autojoin"); + if (!chanList.empty()) { - const std::vector<std::string>& list = i->second; - for (std::vector<std::string>::const_iterator it = list.begin(); it != list.end(); ++it) + std::vector<std::string> typechans; + tokenize(chanList, typechans); + for (std::vector<std::string>::const_iterator it = typechans.begin(); it != typechans.end(); ++it) { if (ServerInstance->IsChannel(it->c_str(), ServerInstance->Config->Limits.ChanMax)) { @@ -106,7 +93,6 @@ class ModuleOperjoin : public Module } } } - }; MODULE_INIT(ModuleOperjoin) |