]> jfr.im git - solanum.git/blame - extensions/extb_server.c
s_user: clean up return types and can YES/NO.
[solanum.git] / extensions / extb_server.c
CommitLineData
212380e3
AC
1/*
2 * Server name extban type: bans all users using a certain server
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_server(const char *data, struct Client *client_p, struct Channel *chptr, long mode_type);
c81afd15 14static const char extb_desc[] = "Server ($s) extban type";
212380e3 15
c81afd15 16DECLARE_MODULE_AV2(extb_server, _modinit, _moddeinit, NULL, NULL, NULL, NULL, NULL, extb_desc);
212380e3
AC
17
18static int
19_modinit(void)
20{
21 extban_table['s'] = eb_server;
22
23 return 0;
24}
25
26static void
27_moddeinit(void)
28{
29 extban_table['s'] = NULL;
30}
31
32static int eb_server(const char *data, struct Client *client_p,
33 struct Channel *chptr, long mode_type)
34{
35
36 (void)chptr;
37 /* This type is not safe for exceptions */
38 if (mode_type == CHFL_EXCEPTION || mode_type == CHFL_INVEX)
39 return EXTBAN_INVALID;
40 if (data == NULL)
41 return EXTBAN_INVALID;
42 return match(data, me.name) ? EXTBAN_MATCH : EXTBAN_NOMATCH;
43}