]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/commands/cmd_clearcache.cpp
Merge remote/local MODULES output
[user/henk/code/inspircd.git] / src / commands / cmd_clearcache.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2009 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 #ifndef __CMD_ADMIN_H__
17 #define __CMD_ADMIN_H__
18
19 #include "users.h"
20 #include "channels.h"
21 #include "ctables.h"
22
23 /** Handle /ADMIN. These command handlers can be reloaded by the core,
24  * and handle basic RFC1459 commands. Commands within modules work
25  * the same way, however, they can be fully unloaded, where these
26  * may not.
27  */
28 class CommandClearcache : public Command
29 {
30  public:
31         /** Constructor for clearcache.
32          */
33         CommandClearcache ( Module* parent) : Command(parent,"CLEARCACHE",0) { flags_needed = 'o'; }
34         /** Handle command.
35          * @param parameters The parameters to the comamnd
36          * @param pcnt The number of parameters passed to teh command
37          * @param user The user issuing the command
38          * @return A value from CmdResult to indicate command success or failure.
39          */
40         CmdResult Handle(const std::vector<std::string>& parameters, User *user);
41 };
42
43 #endif
44
45
46 /** Handle /CLEARCACHE
47  */
48 CmdResult CommandClearcache::Handle (const std::vector<std::string>& parameters, User *user)
49 {
50         int n = ServerInstance->Res->ClearCache();
51         user->WriteServ("NOTICE %s :*** Cleared DNS cache of %d items.", user->nick.c_str(), n);
52         return CMD_SUCCESS;
53 }
54
55 COMMAND_INIT(CommandClearcache)