]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_conn_lusers.cpp
Gah, im forgetting to SetMode!
[user/henk/code/inspircd.git] / src / modules / m_conn_lusers.cpp
index 6cbd6847d0c3154ee128f3357c87328706d68632..2d982301546310883b416e0fb79c27908c8ef58f 100644 (file)
@@ -2,7 +2,7 @@
  *       | Inspire Internet Relay Chat Daemon |
  *       +------------------------------------+
  *
- *  Inspire is copyright (C) 2002-2004 ChatSpike-Dev.
+ *  InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
  *                       E-mail:
  *                <brain@chatspike.net>
  *               <Craig@chatspike.net>
@@ -14,6 +14,8 @@
  * ---------------------------------------------------
  */
 
+using namespace std;
+
 #include "users.h"
 #include "channels.h"
 #include "modules.h"
@@ -30,24 +32,43 @@ class ModuleConnLUSERS : public Module
         
         Server *Srv;
  public:
-       ModuleConnLUSERS()
+       ModuleConnLUSERS(Server* Me)
+               : Module::Module(Me)
        {
-               Srv = new Server;
+               Srv = Me;
        }
        
        virtual ~ModuleConnLUSERS()
        {
-               delete Srv;
        }
        
        virtual Version GetVersion()
        {
                return Version(1,0,0,1,VF_VENDOR);
        }
+
+       void Implements(char* List)
+       {
+               List[I_OnUserConnect] = 1;
+       }
        
        virtual void OnUserConnect(userrec* user)
        {
-               CallCommandHandler("LUSERS", NULL, 0, user);
+               // if we're using a protocol module, we cant just call
+               // the command handler because the protocol module
+               // has hooked it. We must call OnPreCommand in the
+               // protocol module. Yes, at some point there will
+               // be a way to get the current protocol module's name
+               // from the core and probably a pointer to its class.
+               Module* Proto = Srv->FindModule("m_spanningtree.so");
+               if (Proto)
+               {
+                       Proto->OnPreCommand("LUSERS", NULL, 0, user, true);
+               }
+               else
+               {
+                       Srv->CallCommandHandler("LUSERS", NULL, 0, user);
+               }
        }
 };
 
@@ -68,9 +89,9 @@ class ModuleConnLUSERSFactory : public ModuleFactory
        {
        }
        
-       virtual Module * CreateModule()
+       virtual Module * CreateModule(Server* Me)
        {
-               return new ModuleConnLUSERS;
+               return new ModuleConnLUSERS(Me);
        }
        
 };