X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fm_clones.cpp;h=eff9ed9af13aa630f15dd82570a0a76ac2ab17ea;hb=0898f10f75bcd8ecde21c73da90955f95dc30e50;hp=72a7ca7e832abc643480967e225139c182d055a3;hpb=f2acdbc3820f0f4f5ef76a0a64e73d2a320df91f;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_clones.cpp b/src/modules/m_clones.cpp index 72a7ca7e8..eff9ed9af 100644 --- a/src/modules/m_clones.cpp +++ b/src/modules/m_clones.cpp @@ -2,7 +2,7 @@ * | Inspire Internet Relay Chat Daemon | * +------------------------------------+ * - * InspIRCd: (C) 2002-2007 InspIRCd Development Team + * InspIRCd: (C) 2002-2008 InspIRCd Development Team * See: http://www.inspircd.org/wiki/index.php/Credits * * This program is free but copyrighted software; see @@ -12,34 +12,22 @@ */ #include "inspircd.h" -#include "users.h" -#include "channels.h" -#include "modules.h" #include "wildcard.h" /* $ModDesc: Provides the /clones command to retrieve information on a user, channel, or IP address */ /** Handle /CHECK */ -class cmd_clones : public command_t +class CommandClones : public Command { public: - cmd_clones (InspIRCd* Instance) : command_t(Instance,"CLONES", 'o', 1) + CommandClones (InspIRCd* Instance) : Command(Instance,"CLONES", "o", 1) { this->source = "m_clones.so"; syntax = ""; } - std::string FindMatchingIP(const irc::string &ipaddr) - { - std::string n = assign(ipaddr); - for (user_hash::const_iterator a = ServerInstance->clientlist->begin(); a != ServerInstance->clientlist->end(); a++) - if (a->second->GetIPString() == n) - return a->second->GetFullRealHost(); - return ""; - } - - CmdResult Handle (const char** parameters, int pcnt, userrec *user) + CmdResult Handle (const char* const* parameters, int pcnt, User *user) { std::string clonesstr = "304 " + std::string(user->nick) + " :CLONES"; @@ -49,17 +37,18 @@ class cmd_clones : public command_t /* * Syntax of a /clones reply: * :server.name 304 target :CLONES START - * :server.name 304 target :CLONES + * :server.name 304 target :CLONES * :server.name 304 target :CHECK END */ user->WriteServ(clonesstr + " START"); /* hostname or other */ - for (clonemap::iterator x = ServerInstance->global_clones.begin(); x != ServerInstance->global_clones.end(); x++) + // XXX I really don't like marking global_clones public for this. at all. -- w00t + for (clonemap::iterator x = ServerInstance->Users->global_clones.begin(); x != ServerInstance->Users->global_clones.end(); x++) { if (x->second >= limit) - user->WriteServ(clonesstr + " "+ ConvToStr(x->second) + " " + assign(x->first) + " " + FindMatchingIP(x->first)); + user->WriteServ(clonesstr + " "+ ConvToStr(x->second) + " " + assign(x->first)); } user->WriteServ(clonesstr + " END"); @@ -72,13 +61,14 @@ class cmd_clones : public command_t class ModuleClones : public Module { private: - cmd_clones *mycommand; + CommandClones *mycommand; public: ModuleClones(InspIRCd* Me) : Module(Me) { - mycommand = new cmd_clones(ServerInstance); + mycommand = new CommandClones(ServerInstance); ServerInstance->AddCommand(mycommand); + } virtual ~ModuleClones() @@ -87,13 +77,9 @@ class ModuleClones : public Module virtual Version GetVersion() { - return Version(1, 1, 0, 0, VF_VENDOR, API_VERSION); + return Version(1, 2, 0, 0, VF_VENDOR, API_VERSION); } - void Implements(char* List) - { - /* we don't hook anything, nothing required */ - } };