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