]> jfr.im git - solanum.git/blame_incremental - extensions/extb_server.c
Add `solanum.chat/oper` capablity (#217)
[solanum.git] / extensions / extb_server.c
... / ...
CommitLineData
1/*
2 * Server name extban type: bans all users using a certain server
3 * -- jilles
4 */
5
6#include "stdinc.h"
7#include "modules.h"
8#include "client.h"
9#include "ircd.h"
10
11static const char extb_desc[] = "Server ($s) extban type";
12
13static int _modinit(void);
14static void _moddeinit(void);
15static int eb_server(const char *data, struct Client *client_p, struct Channel *chptr, long mode_type);
16
17DECLARE_MODULE_AV2(extb_server, _modinit, _moddeinit, NULL, NULL, NULL, NULL, NULL, extb_desc);
18
19static int
20_modinit(void)
21{
22 extban_table['s'] = eb_server;
23
24 return 0;
25}
26
27static void
28_moddeinit(void)
29{
30 extban_table['s'] = NULL;
31}
32
33static int eb_server(const char *data, struct Client *client_p,
34 struct Channel *chptr, long mode_type)
35{
36
37 (void)chptr;
38 /* This type is not safe for exceptions */
39 if (mode_type == CHFL_EXCEPTION || mode_type == CHFL_INVEX)
40 return EXTBAN_INVALID;
41 if (data == NULL)
42 return EXTBAN_INVALID;
43 return match(data, me.name) ? EXTBAN_MATCH : EXTBAN_NOMATCH;
44}