]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_ssl_dummy.cpp
OOPS! We try again, since I'm smoking craq. LF is 0x0a NOT CR.
[user/henk/code/inspircd.git] / src / modules / m_ssl_dummy.cpp
index 7214c416bd3c29800affbfe5d00d4bbaddbdce9a..fb3032da2ca5e68d00c53c08ec79170f4e08b4bd 100644 (file)
@@ -1,35 +1,31 @@
-/*   +------------------------------------+
- *   | Inspire Internet Relay Chat Daemon |
- *   +------------------------------------+
+/*       +------------------------------------+
+ *       | Inspire Internet Relay Chat Daemon |
+ *       +------------------------------------+
+ *
+ *  InspIRCd: (C) 2002-2007 InspIRCd Development Team
+ * See: http://www.inspircd.org/wiki/index.php/Credits
  *
- *  InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
- *   E-mail:
- *     <brain@chatspike.net>
- *     <Craig@chatspike.net>
- * <omster@gmail.com>
- * 
- * Written by Craig Edwards, Craig McLure, and others.
  * This program is free but copyrighted software; see
- *the file COPYING for details.
+ *            the file COPYING for details.
  *
  * ---------------------------------------------------
  */
 
+#include "inspircd.h"
 #include "users.h"
 #include "modules.h"
-#include "helperfuncs.h"
 
 /* $ModDesc: Makes remote /whoises to SSL servers work on a non-ssl server */
 
 class ModuleSSLDummy : public Module
 {
-       Server* Srv;
+       
        char* dummy;
  public:
        
-       ModuleSSLDummy(Server* Me)      : Module::Module(Me)
+       ModuleSSLDummy(InspIRCd* Me)    : Module(Me)
        {
-               Srv = Me;
+               
        }
        
        virtual ~ModuleSSLDummy()
@@ -38,7 +34,7 @@ class ModuleSSLDummy : public Module
                
        virtual Version GetVersion()
        {
-               return Version(1, 0, 0, 0, VF_VENDOR);
+               return Version(1, 0, 0, 0, VF_VENDOR, API_VERSION);
        }
 
        void Implements(char* List)
@@ -51,11 +47,11 @@ class ModuleSSLDummy : public Module
        {
                if(dest->GetExt("ssl", dummy))
                {
-                       WriteServ(source->fd, "320 %s %s :is using a secure connection", source->nick, dest->nick);
+                       ServerInstance->SendWhoisLine(source, dest, 320, "%s %s :is using a secure connection", source->nick, dest->nick);
                }
        }
        
-       virtual void OnSyncUserMetaData(userrec* user, Module* proto, void* opaque, const std::string &extname)
+       virtual void OnSyncUserMetaData(userrec* user, Module* proto, void* opaque, const std::string &extname, bool displayable)
        {
                // check if the linking module wants to know about OUR metadata
                if(extname == "ssl")
@@ -65,7 +61,7 @@ class ModuleSSLDummy : public Module
                        {
                                // call this function in the linking module, let it format the data how it
                                // sees fit, and send it on its way. We dont need or want to know how.
-                               proto->ProtoSendMetaData(opaque, TYPE_USER, user, extname, "ON");
+                               proto->ProtoSendMetaData(opaque, TYPE_USER, user, extname, displayable ? "Enabled" : "ON");
                        }
                }
        }
@@ -85,26 +81,4 @@ class ModuleSSLDummy : public Module
        }
 };
 
-class ModuleSSLDummyFactory : public ModuleFactory
-{
- public:
-       ModuleSSLDummyFactory()
-       {
-       }
-       
-       ~ModuleSSLDummyFactory()
-       {
-       }
-       
-       virtual Module * CreateModule(Server* Me)
-       {
-               return new ModuleSSLDummy(Me);
-       }
-};
-
-
-extern "C" void * init_module( void )
-{
-       return new ModuleSSLDummyFactory;
-}
-
+MODULE_INIT(ModuleSSLDummy)