X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fm_conn_lusers.cpp;h=2d64819416c3e4c8bd45e617d6b627f9112c505b;hb=66098d307c036997e51eaea21724615e27fdc3e9;hp=8a468c96abf3c9e369ce0d5d6a99c3493b1d3bfb;hpb=2d821f2980825be73e3f90b47ffff365b0ec5ecb;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_conn_lusers.cpp b/src/modules/m_conn_lusers.cpp index 8a468c96a..2d6481941 100644 --- a/src/modules/m_conn_lusers.cpp +++ b/src/modules/m_conn_lusers.cpp @@ -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: * * @@ -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 */ +extern InspIRCd* ServerInstance; + // 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() @@ -46,6 +49,11 @@ class ModuleConnLUSERS : public Module { return Version(1,0,0,1,VF_VENDOR); } + + void Implements(char* List) + { + List[I_OnUserConnect] = 1; + } virtual void OnUserConnect(userrec* user) { @@ -55,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); + Proto->OnPreCommand("LUSERS", NULL, 0, user, true); } else { - Srv->CallCommandHandler("LUSERS", NULL, 0, user); + ServerInstance->CallCommandHandler("LUSERS", NULL, 0, user); } } }; @@ -84,7 +92,7 @@ class ModuleConnLUSERSFactory : public ModuleFactory { } - virtual Module * CreateModule(Server* Me) + virtual Module * CreateModule(InspIRCd* Me) { return new ModuleConnLUSERS(Me); }