]> jfr.im git - solanum.git/blame - extensions/extb_account.c
AV2 descriptions for m_[no]*
[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);
c81afd15 14static const char extb_desc[] = "Account ($a) extban type";
212380e3 15
c81afd15 16DECLARE_MODULE_AV2(extb_account, _modinit, _moddeinit, NULL, NULL, NULL, NULL, NULL, extb_desc);
212380e3
AC
17
18static int
19_modinit(void)
20{
21 extban_table['a'] = eb_account;
22
23 return 0;
24}
25
26static void
27_moddeinit(void)
28{
29 extban_table['a'] = NULL;
30}
31
32static int eb_account(const char *data, struct Client *client_p,
33 struct Channel *chptr, long mode_type)
34{
35
36 (void)chptr;
37 /* $a alone matches any logged in user */
38 if (data == NULL)
39 return EmptyString(client_p->user->suser) ? EXTBAN_NOMATCH : EXTBAN_MATCH;
40 /* $a:MASK matches users logged in under matching account */
41 return match(data, client_p->user->suser) ? EXTBAN_MATCH : EXTBAN_NOMATCH;
42}