]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/cmd_clearcache.cpp
Windows support. Tested and working to compile on freebsd and linux. Next step is...
[user/henk/code/inspircd.git] / src / cmd_clearcache.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2007 InspIRCd Development Team
6  * See: http://www.inspircd.org/wiki/index.php/Credits
7  *
8  * This program is free but copyrighted software; see
9  *            the file COPYING for details.
10  *
11  * ---------------------------------------------------
12  */
13
14 #include "configreader.h"
15 #include "users.h"
16 #include "commands/cmd_clearcache.h"
17
18 extern "C" DllExport command_t* init_command(InspIRCd* Instance)
19 {
20         return new cmd_clearcache(Instance);
21 }
22
23 /** Handle /CLEARCACHE
24  */
25 CmdResult cmd_clearcache::Handle (const char** parameters, int pcnt, userrec *user)
26 {
27         int n = ServerInstance->Res->ClearCache();
28         user->WriteServ("NOTICE %s :*** Cleared DNS cache of %d items.", user->nick, n);
29         return CMD_SUCCESS;
30 }