X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fm_conn_lusers.cpp;h=03abce541f80fd0c75c5181015dab5e58ebc38ee;hb=7f00015727fab50e37de46aa90d218b31c852c87;hp=f988c76c029bad3579cce7f88f5fbfbde2507c57;hpb=d02a5866d4fdedec9219aeca0a6048828b394fd2;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_conn_lusers.cpp b/src/modules/m_conn_lusers.cpp index f988c76c0..03abce541 100644 --- a/src/modules/m_conn_lusers.cpp +++ b/src/modules/m_conn_lusers.cpp @@ -2,20 +2,15 @@ * | Inspire Internet Relay Chat Daemon | * +------------------------------------+ * - * InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev. - * E-mail: - * - * - * - * 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" @@ -23,7 +18,7 @@ using namespace std; /* $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 @@ -33,12 +28,12 @@ class ModuleConnLUSERS : public Module { private: - Server *Srv; + public: - ModuleConnLUSERS(Server* Me) + ModuleConnLUSERS(InspIRCd* Me) : Module::Module(Me) { - Srv = Me; + } virtual ~ModuleConnLUSERS() @@ -47,7 +42,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) @@ -66,11 +61,11 @@ class ModuleConnLUSERS : public Module 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); } } }; @@ -92,7 +87,7 @@ class ModuleConnLUSERSFactory : public ModuleFactory { } - virtual Module * CreateModule(Server* Me) + virtual Module * CreateModule(InspIRCd* Me) { return new ModuleConnLUSERS(Me); }