From 04b29a4e89df5e88532dbd87e1df6691e550a2c7 Mon Sep 17 00:00:00 2001 From: brain Date: Sun, 9 Jul 2006 17:56:43 +0000 Subject: Added Server::GetModuleName(), Module* to filename git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4238 e03df62e-2008-0410-955e-edbf42e46eb7 --- src/modules.cpp | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'src') diff --git a/src/modules.cpp b/src/modules.cpp index 2c72943ec..d6119bd5b 100644 --- a/src/modules.cpp +++ b/src/modules.cpp @@ -292,6 +292,18 @@ Module* Server::FindFeature(const std::string &FeatureName) return iter->second; } +const char* Server::GetModuleName(Module* m) +{ + for (int i = 0; i <= MODCOUNT; i++) + { + if (modules[i] == m) + { + return module_names[i]; + } + } + return ""; +} + void Server::RehashServer() { WriteOpers("*** Rehashing config file"); -- cgit v1.2.3