2007-01-25 07:40:21 +01:00
|
|
|
/*
|
|
|
|
* Oper extban type: matches opers
|
|
|
|
* -- jilles
|
|
|
|
*
|
|
|
|
* $Id: extb_oper.c 1299 2006-05-11 15:43:03Z jilles $
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "stdinc.h"
|
|
|
|
#include "modules.h"
|
|
|
|
#include "client.h"
|
2012-01-22 11:05:34 +01:00
|
|
|
#include "privilege.h"
|
|
|
|
#include "s_newconf.h"
|
2007-01-25 07:40:21 +01:00
|
|
|
#include "ircd.h"
|
|
|
|
|
|
|
|
static int _modinit(void);
|
|
|
|
static void _moddeinit(void);
|
|
|
|
static int eb_oper(const char *data, struct Client *client_p, struct Channel *chptr, long mode_type);
|
|
|
|
|
|
|
|
DECLARE_MODULE_AV1(extb_oper, _modinit, _moddeinit, NULL, NULL, NULL, "$Revision: 1299 $");
|
|
|
|
|
|
|
|
static int
|
|
|
|
_modinit(void)
|
|
|
|
{
|
|
|
|
extban_table['o'] = eb_oper;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
_moddeinit(void)
|
|
|
|
{
|
|
|
|
extban_table['o'] = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int eb_oper(const char *data, struct Client *client_p,
|
|
|
|
struct Channel *chptr, long mode_type)
|
|
|
|
{
|
|
|
|
|
|
|
|
(void)chptr;
|
|
|
|
(void)mode_type;
|
2012-01-22 11:05:34 +01:00
|
|
|
|
2007-12-18 23:00:42 +01:00
|
|
|
if (data != NULL)
|
2016-01-06 02:12:38 +01:00
|
|
|
{
|
|
|
|
struct PrivilegeSet *set = privilegeset_get(data);
|
|
|
|
if (set != NULL && client_p->localClient->privset == set)
|
|
|
|
return EXTBAN_MATCH;
|
|
|
|
|
2012-01-24 18:13:32 +01:00
|
|
|
/* $o:admin or whatever */
|
|
|
|
return HasPrivilege(client_p, data) ? EXTBAN_MATCH : EXTBAN_NOMATCH;
|
2016-01-06 02:12:38 +01:00
|
|
|
}
|
2012-01-22 11:05:34 +01:00
|
|
|
|
2012-01-24 18:13:32 +01:00
|
|
|
return IsOper(client_p) ? EXTBAN_MATCH : EXTBAN_NOMATCH;
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|