summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/modules/m_oper_hash.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/modules/m_oper_hash.cpp b/src/modules/m_oper_hash.cpp
index be948b445..a83b9cc51 100644
--- a/src/modules/m_oper_hash.cpp
+++ b/src/modules/m_oper_hash.cpp
@@ -88,6 +88,8 @@ class ModuleOperHash : public Module
int ID;
ConfigReader* Conf;
+ std::map<std::string, Module*> hashers;
+
public:
ModuleOperHash(InspIRCd* Me)
@@ -102,6 +104,13 @@ class ModuleOperHash : public Module
if (ml)
{
ServerInstance->Log(DEBUG, "Found interface 'HashRequest' containing %d modules", ml->size());
+
+ for (modulelist::iterator m = ml->begin(); m != ml->end(); ml++)
+ {
+ std::string name = HashNameRequest(this, *m).Send();
+ hashers[name] = *m;
+ ServerInstance->Log(DEBUG, "Found HashRequest interface: '%s' -> '%08x'", name.c_str(), *m);
+ }
}
/* Try to find the md5 service provider, bail if it can't be found */