1 /* +------------------------------------+
2 * | Inspire Internet Relay Chat Daemon |
3 * +------------------------------------+
5 * InspIRCd: (C) 2002-2007 InspIRCd Development Team
6 * See: http://www.inspircd.org/wiki/index.php/Credits
8 * This program is free but copyrighted software; see
9 * the file COPYING for details.
11 * ---------------------------------------------------
14 #ifndef __CMD_STATS_H__
15 #define __CMD_STATS_H__
17 // include the common header files
23 DllExport void DoStats(InspIRCd* Instance, char statschar, User* user, string_list &results);
25 /** Handle /STATS. These command handlers can be reloaded by the core,
26 * and handle basic RFC1459 commands. Commands within modules work
27 * the same way, however, they can be fully unloaded, where these
30 class cmd_stats : public Command
33 /** Constructor for stats.
35 cmd_stats (InspIRCd* Instance) : Command(Instance,"STATS",0,1) { syntax = "<stats-symbol> [<servername>]"; }
37 * @param parameters The parameters to the comamnd
38 * @param pcnt The number of parameters passed to teh command
39 * @param user The user issuing the command
40 * @return A value from CmdResult to indicate command success or failure.
42 CmdResult Handle(const char** parameters, int pcnt, User *user);