blob: 82bdf55500ffb46a23c116c17f50d21ad55c6b0d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
/* +------------------------------------+
* | Inspire Internet Relay Chat Daemon |
* +------------------------------------+
*
* InspIRCd: (C) 2002-2008 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.
*
* ---------------------------------------------------
*/
#include "inspircd.h"
#include "wildcard.h"
/* $ModDesc: Provides the /clones command to retrieve information on clones. */
/** Handle /CHECK
*/
class CommandClones : public Command
{
public:
CommandClones (InspIRCd* Instance) : Command(Instance,"CLONES", "o", 1)
{
this->source = "m_clones.so";
syntax = "<limit>";
}
CmdResult Handle (const std::vector<std::string> ¶meters, User *user)
{
std::string clonesstr = "304 " + std::string(user->nick) + " :CLONES";
unsigned long limit = atoi(parameters[0].c_str());
/*
* Syntax of a /clones reply:
* :server.name 304 target :CLONES START
* :server.name 304 target :CLONES <count> <ip>
* :server.name 304 target :CHECK END
*/
user->WriteServ(clonesstr + " START");
/* hostname or other */
// 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));
}
user->WriteServ(clonesstr + " END");
return CMD_LOCALONLY;
}
};
class ModuleClones : public Module
{
private:
CommandClones *mycommand;
public:
ModuleClones(InspIRCd* Me) : Module(Me)
{
mycommand = new CommandClones(ServerInstance);
ServerInstance->AddCommand(mycommand);
}
virtual ~ModuleClones()
{
}
virtual Version GetVersion()
{
return Version(1, 2, 0, 0, VF_VENDOR, API_VERSION);
}
};
MODULE_INIT(ModuleClones)
|