]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - include/commands/cmd_oper.h
Header update: 2007 -> 2008
[user/henk/code/inspircd.git] / include / commands / cmd_oper.h
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2008 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_OPER_H__
15 #define __CMD_OPER_H__
16
17 // include the common header files
18
19 #include "users.h"
20 #include "channels.h"
21
22 bool OneOfMatches(const char* host, const char* ip, const char* hostlist);
23
24 /** Handle /OPER. These command handlers can be reloaded by the core,
25  * and handle basic RFC1459 commands. Commands within modules work
26  * the same way, however, they can be fully unloaded, where these
27  * may not.
28  */
29 class CommandOper : public Command
30 {
31  public:
32         /** Constructor for oper.
33          */
34         CommandOper (InspIRCd* Instance) : Command(Instance,"OPER",0,2,false,2) { syntax = "<username> <password>"; }
35         /** Handle command.
36          * @param parameters The parameters to the comamnd
37          * @param pcnt The number of parameters passed to teh command
38          * @param user The user issuing the command
39          * @return A value from CmdResult to indicate command success or failure.
40          */
41         CmdResult Handle(const char** parameters, int pcnt, User *user);
42 };
43
44 #endif