]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/commands/cmd_clearcache.cpp
...because every now and again, i have to do a massive commit.
[user/henk/code/inspircd.git] / src / commands / cmd_clearcache.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2010 InspIRCd Development Team
6  * See: http://wiki.inspircd.org/Credits
7  *
8  * This program is free but copyrighted software; see
9  *            the file COPYING for details.
10  *
11  * ---------------------------------------------------
12  */
13
14 #include "inspircd.h"
15
16 #include "users.h"
17 #include "channels.h"
18 #include "ctables.h"
19
20 /** Handle /ADMIN. These command handlers can be reloaded by the core,
21  * and handle basic RFC1459 commands. Commands within modules work
22  * the same way, however, they can be fully unloaded, where these
23  * may not.
24  */
25 class CommandClearcache : public Command
26 {
27  public:
28         /** Constructor for clearcache.
29          */
30         CommandClearcache ( Module* parent) : Command(parent,"CLEARCACHE",0) { flags_needed = 'o'; }
31         /** Handle command.
32          * @param parameters The parameters to the comamnd
33          * @param pcnt The number of parameters passed to teh command
34          * @param user The user issuing the command
35          * @return A value from CmdResult to indicate command success or failure.
36          */
37         CmdResult Handle(const std::vector<std::string>& parameters, User *user);
38 };
39
40 /** Handle /CLEARCACHE
41  */
42 CmdResult CommandClearcache::Handle (const std::vector<std::string>& parameters, User *user)
43 {
44         int n = ServerInstance->Res->ClearCache();
45         user->WriteServ("NOTICE %s :*** Cleared DNS cache of %d items.", user->nick.c_str(), n);
46         return CMD_SUCCESS;
47 }
48
49 COMMAND_INIT(CommandClearcache)