]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_conn_waitpong.cpp
m_spanningtree When an IOHook goes away close all pending connections that use it
[user/henk/code/inspircd.git] / src / modules / m_conn_waitpong.cpp
index 50aeffd0a70ab01dbac04d4ffecb8b9f53f03b9d..1d48220a6b096330cbafecd9e077216149042f35 100644 (file)
@@ -35,11 +35,15 @@ class ModuleWaitPong : public Module
  public:
        ModuleWaitPong()
         : ext("waitpong_pingstr", this)
+       {
+       }
+
+       void init()
        {
                ServerInstance->Modules->AddService(ext);
                OnRehash(NULL);
                Implementation eventlist[] = { I_OnUserRegister, I_OnCheckReady, I_OnPreCommand, I_OnRehash };
-               ServerInstance->Modules->Attach(eventlist, this, 4);
+               ServerInstance->Modules->Attach(eventlist, this, sizeof(eventlist)/sizeof(Implementation));
        }
 
        void OnRehash(User* user)