]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_conn_lusers.cpp
Added <oper:swhois> to m_swhois, which will override <type:swhois> if specified
[user/henk/code/inspircd.git] / src / modules / m_conn_lusers.cpp
index 2d982301546310883b416e0fb79c27908c8ef58f..06718348ef30b7d8e42f0cdbf7767cf6c03d0f3c 100644 (file)
@@ -19,9 +19,12 @@ using namespace std;
 #include "users.h"
 #include "channels.h"
 #include "modules.h"
+#include "inspircd.h"
 
 /* $ModDesc: Sends the /LUSERS on connect */
 
+
+
 // This has to be the simplest module ever.
 // The RFC doesnt specify that you should send the /LUSERS numerics
 // on connect, but someone asked for it, so its in a module.
@@ -30,12 +33,12 @@ class ModuleConnLUSERS : public Module
 {
  private:
         
-        Server *Srv;
+        
  public:
-       ModuleConnLUSERS(Server* Me)
+       ModuleConnLUSERS(InspIRCd* Me)
                : Module::Module(Me)
        {
-               Srv = Me;
+               
        }
        
        virtual ~ModuleConnLUSERS()
@@ -44,7 +47,7 @@ class ModuleConnLUSERS : public Module
        
        virtual Version GetVersion()
        {
-               return Version(1,0,0,1,VF_VENDOR);
+               return Version(1,1,0,1,VF_VENDOR,API_VERSION);
        }
 
        void Implements(char* List)
@@ -60,14 +63,14 @@ class ModuleConnLUSERS : public Module
                // 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");
+               Module* Proto = ServerInstance->FindModule("m_spanningtree.so");
                if (Proto)
                {
-                       Proto->OnPreCommand("LUSERS", NULL, 0, user, true);
+                       Proto->OnPreCommand("LUSERS", NULL, 0, user, true, "LUSERS");
                }
                else
                {
-                       Srv->CallCommandHandler("LUSERS", NULL, 0, user);
+                       ServerInstance->CallCommandHandler("LUSERS", NULL, 0, user);
                }
        }
 };
@@ -89,7 +92,7 @@ class ModuleConnLUSERSFactory : public ModuleFactory
        {
        }
        
-       virtual Module * CreateModule(Server* Me)
+       virtual Module * CreateModule(InspIRCd* Me)
        {
                return new ModuleConnLUSERS(Me);
        }