]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_blockcaps.cpp
Add interface to SSL modules that allows other modules to obtain the raw SSL session...
[user/henk/code/inspircd.git] / src / modules / m_blockcaps.cpp
index ca452945b65b9c90d403eda8edb5c0a8f9118600..2006936992aa333723efa750548e38acd964030a 100644 (file)
@@ -48,10 +48,9 @@ public:
        void init()
        {
                OnRehash(NULL);
-               if (!ServerInstance->Modes->AddMode(&bc))
-                       throw ModuleException("Could not add new modes!");
+               ServerInstance->Modules->AddService(bc);
                Implementation eventlist[] = { I_OnUserPreMessage, I_OnUserPreNotice, I_OnRehash, I_On005Numeric };
-               ServerInstance->Modules->Attach(eventlist, this, 4);
+               ServerInstance->Modules->Attach(eventlist, this, sizeof(eventlist)/sizeof(Implementation));
        }
 
        virtual void On005Numeric(std::string &output)