]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - include/commands/cmd_oper.h
Change prototype of OneOfMatches
[user/henk/code/inspircd.git] / include / commands / cmd_oper.h
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
6  *                       E-mail:
7  *                <brain@chatspike.net>
8  *                <Craig@chatspike.net>
9  *
10  * Written by Craig Edwards, Craig McLure, and others.
11  * This program is free but copyrighted software; see
12  *            the file COPYING for details.
13  *
14  * ---------------------------------------------------
15  */
16
17 #ifndef __CMD_OPER_H__
18 #define __CMD_OPER_H__
19
20 // include the common header files
21
22 #include <typeinfo>
23 #include <iostream>
24 #include <string>
25 #include <deque>
26 #include <sstream>
27 #include <vector>
28 #include "users.h"
29 #include "channels.h"
30
31 bool OneOfMatches(const char* host, const char* ip, const char* hostlist);
32
33 class cmd_oper : public command_t
34 {
35  public:
36         cmd_oper () : command_t("OPER",0,2) { syntax = "<username> <password>"; }
37         void Handle(const char** parameters, int pcnt, userrec *user);
38 };
39
40 #endif