]> jfr.im git - solanum.git/blob - extensions/extb_oper.c
Remove $Id tags from everything.
[solanum.git] / extensions / extb_oper.c
1 /*
2 * Oper extban type: matches opers
3 * -- jilles
4 */
5
6 #include "stdinc.h"
7 #include "modules.h"
8 #include "client.h"
9 #include "privilege.h"
10 #include "s_newconf.h"
11 #include "ircd.h"
12
13 static int _modinit(void);
14 static void _moddeinit(void);
15 static int eb_oper(const char *data, struct Client *client_p, struct Channel *chptr, long mode_type);
16
17 DECLARE_MODULE_AV1(extb_oper, _modinit, _moddeinit, NULL, NULL, NULL, "$Revision: 1299 $");
18
19 static int
20 _modinit(void)
21 {
22 extban_table['o'] = eb_oper;
23
24 return 0;
25 }
26
27 static void
28 _moddeinit(void)
29 {
30 extban_table['o'] = NULL;
31 }
32
33 static int eb_oper(const char *data, struct Client *client_p,
34 struct Channel *chptr, long mode_type)
35 {
36
37 (void)chptr;
38 (void)mode_type;
39
40 if (data != NULL)
41 {
42 struct PrivilegeSet *set = privilegeset_get(data);
43 if (set != NULL && client_p->localClient->privset == set)
44 return EXTBAN_MATCH;
45
46 /* $o:admin or whatever */
47 return HasPrivilege(client_p, data) ? EXTBAN_MATCH : EXTBAN_NOMATCH;
48 }
49
50 return IsOper(client_p) ? EXTBAN_MATCH : EXTBAN_NOMATCH;
51 }