]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_cban.cpp
We were already sending FMODE +nt after each channel creation to keep services happy...
[user/henk/code/inspircd.git] / src / modules / m_cban.cpp
index 6d13b59a5cb341d9f4baec6d079abf60591daa02..b6e197c2f0c89b5790f4c8233584022fc7a3f0de 100644 (file)
  * ---------------------------------------------------
  */
 
+#include "inspircd.h"
 #include <algorithm>
 #include "users.h"
 #include "channels.h"
 #include "modules.h"
 #include "configreader.h"
-#include "inspircd.h"
 
 /* $ModDesc: Gives /cban, aka C:lines. Think Q:lines, for channels. */
 
@@ -111,6 +111,7 @@ class cmd_cban : public command_t
                        }
                }
 
+               /* we want this routed! */
                return CMD_SUCCESS;
        }
 };
@@ -126,7 +127,7 @@ class ModuleCBan : public Module
        
 
  public:
-       ModuleCBan(InspIRCd* Me) : Module::Module(Me)
+       ModuleCBan(InspIRCd* Me) : Module(Me)
        {
                
                mycommand = new cmd_cban(Me);
@@ -172,7 +173,7 @@ class ModuleCBan : public Module
                return 0;
        }
        
-       virtual void OnSyncOtherMetaData(Module* proto, void* opaque)
+       virtual void OnSyncOtherMetaData(Module* proto, void* opaque, bool displayable)
        {
                for(cbanlist::iterator iter = cbans.begin(); iter != cbans.end(); iter++)
                {
@@ -233,7 +234,6 @@ class ModuleCBan : public Module
                                {
                                        if (iter->set_on + iter->length <= ServerInstance->Time())
                                        {
-                                               ServerInstance->Log(DEBUG, "m_cban.so: Ban on %s expired, removing...", iter->chname.c_str());
                                                ServerInstance->WriteOpers("*** %li second CBAN on %s (%s) set %u seconds ago expired", iter->length, iter->chname.c_str(), iter->reason.c_str(), ServerInstance->Time() - iter->set_on);
                                                cbans.erase(iter);
                                                go_again = true;
@@ -266,7 +266,7 @@ class ModuleCBanFactory : public ModuleFactory
 };
 
 
-extern "C" void * init_module( void )
+extern "C" DllExport void * init_module( void )
 {
        return new ModuleCBanFactory;
 }