]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - include/commands/cmd_admin.h
In the grand tradition of huge fucking commits:
[user/henk/code/inspircd.git] / include / commands / cmd_admin.h
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 #ifndef __CMD_ADMIN_H__
15 #define __CMD_ADMIN_H__
16
17 #include "users.h"
18 #include "channels.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 cmd_admin : public Command
26 {
27  public:
28         /** Constructor for admin.
29          */
30         cmd_admin (InspIRCd* Instance) : Command(Instance,"ADMIN",0,0) { syntax = "[<servername>]"; }
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 char** parameters, int pcnt, User *user);
38 };
39
40 #endif