]> jfr.im git - solanum.git/blame - extensions/extb_account.c
librb: it's pretty obvious this has been updated since 2008.
[solanum.git] / extensions / extb_account.c
CommitLineData
212380e3
AC
1/*
2 * Account extban type: bans all users with any/matching account
3 * -- jilles
212380e3
AC
4 */
5
6#include "stdinc.h"
7#include "modules.h"
8#include "client.h"
9#include "ircd.h"
10
11static int _modinit(void);
12static void _moddeinit(void);
13static int eb_account(const char *data, struct Client *client_p, struct Channel *chptr, long mode_type);
14
04f832b7 15DECLARE_MODULE_AV2(extb_account, _modinit, _moddeinit, NULL, NULL, NULL, NULL, NULL, NULL);
212380e3
AC
16
17static int
18_modinit(void)
19{
20 extban_table['a'] = eb_account;
21
22 return 0;
23}
24
25static void
26_moddeinit(void)
27{
28 extban_table['a'] = NULL;
29}
30
31static int eb_account(const char *data, struct Client *client_p,
32 struct Channel *chptr, long mode_type)
33{
34
35 (void)chptr;
36 /* $a alone matches any logged in user */
37 if (data == NULL)
38 return EmptyString(client_p->user->suser) ? EXTBAN_NOMATCH : EXTBAN_MATCH;
39 /* $a:MASK matches users logged in under matching account */
40 return match(data, client_p->user->suser) ? EXTBAN_MATCH : EXTBAN_NOMATCH;
41}