]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_conn_lusers.cpp
Add config <options:disablehmac> to support disabling of HMAC, and tidy up to detect...
[user/henk/code/inspircd.git] / src / modules / m_conn_lusers.cpp
index 779d145765382bf7f4716edeed9009b3c946aace..03abce541f80fd0c75c5181015dab5e58ebc38ee 100644 (file)
@@ -2,26 +2,24 @@
  *       | Inspire Internet Relay Chat Daemon |
  *       +------------------------------------+
  *
- *  Inspire is copyright (C) 2002-2004 ChatSpike-Dev.
- *                       E-mail:
- *                <brain@chatspike.net>
- *               <Craig@chatspike.net>
- *     
- * Written by Craig Edwards, Craig McLure, and others.
+ *  InspIRCd: (C) 2002-2007 InspIRCd Development Team
+ * See: http://www.inspircd.org/wiki/index.php/Credits
+ *
  * This program is free but copyrighted software; see
  *            the file COPYING for details.
  *
  * ---------------------------------------------------
  */
 
-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,21 +28,26 @@ class ModuleConnLUSERS : public Module
 {
  private:
         
-        Server *Srv;
+        
  public:
-       ModuleConnLUSERS()
+       ModuleConnLUSERS(InspIRCd* Me)
+               : Module::Module(Me)
        {
-               Srv = new Server;
+               
        }
        
        virtual ~ModuleConnLUSERS()
        {
-               delete Srv;
        }
        
        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)
+       {
+               List[I_OnUserConnect] = 1;
        }
        
        virtual void OnUserConnect(userrec* user)
@@ -55,14 +58,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);
+                       Proto->OnPreCommand("LUSERS", NULL, 0, user, true, "LUSERS");
                }
                else
                {
-                       Srv->CallCommandHandler("LUSERS", NULL, 0, user);
+                       ServerInstance->CallCommandHandler("LUSERS", NULL, 0, user);
                }
        }
 };
@@ -84,9 +87,9 @@ class ModuleConnLUSERSFactory : public ModuleFactory
        {
        }
        
-       virtual Module * CreateModule()
+       virtual Module * CreateModule(InspIRCd* Me)
        {
-               return new ModuleConnLUSERS;
+               return new ModuleConnLUSERS(Me);
        }
        
 };