]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_sha256.cpp
Test stuff to fix remote stats brokage
[user/henk/code/inspircd.git] / src / modules / m_sha256.cpp
index 07bcab3aed161827a57061192d12ce91ba07ec9b..6ba625a412673444f729c7ab90fff99e0a912610 100644 (file)
@@ -2,12 +2,9 @@
  *       | Inspire Internet Relay Chat Daemon |
  *       +------------------------------------+
  *
- *  InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
- *                       E-mail:
- *                <brain@chatspike.net>
- *                <Craig@chatspike.net>
- *     
- * Written by Craig Edwards, Craig McLure, and others.
+ *  InspIRCd: (C) 2002-2007 InspIRCd Development Team
+ * See: http://www.inspircd.org/wiki/index.php/Credits
+ *
  * This program is free but copyrighted software; see
  *            the file COPYING for details.
  *
@@ -249,10 +246,12 @@ class ModuleSHA256 : public Module
 
        ModuleSHA256(InspIRCd* Me) : Module::Module(Me), key(NULL), chars(NULL)
        {
+               ServerInstance->PublishInterface("HashRequest", this);
        }
 
        virtual ~ModuleSHA256()
        {
+               ServerInstance->UnpublishInterface("HashRequest", this);
        }
 
        void Implements(char *List)
@@ -277,6 +276,10 @@ class ModuleSHA256 : public Module
                        SHA256((const char*)SHA->GetHashData(), data, strlen(SHA->GetHashData()), chars ? chars : "0123456789abcdef", key);
                        return data;
                }
+               else if (strcmp("NAME", request->GetId()) == 0)
+               {
+                       return "sha256";
+               }
                else if (strcmp("RESET", request->GetId()) == 0)
                {
                        this->chars = NULL;
@@ -287,7 +290,7 @@ class ModuleSHA256 : public Module
 
        virtual Version GetVersion()
        {
-               return Version(1, 1, 0, 1, VF_VENDOR, API_VERSION);
+               return Version(1, 1, 0, 1, VF_VENDOR|VF_SERVICEPROVIDER, API_VERSION);
        }
 };