]> jfr.im git - irc/rqf/shadowircd.git/blame - extensions/m_42.c
Fix crash if identify_service/identify_command were not specified in ircd.conf.
[irc/rqf/shadowircd.git] / extensions / m_42.c
CommitLineData
212380e3 1/*
2 * Copyright (C) infinity-infinity God <God@Heaven>
3 *
4 * Bob was here
5366977b 5 * $Id: m_42.c 3161 2007-01-25 07:23:01Z nenolod $
212380e3 6 */
7
8#include "stdinc.h"
9#include "modules.h"
10#include "client.h"
11#include "ircd.h"
12#include "send.h"
13
14static int mclient_42(struct Client *client_p, struct Client *source_p, int parc, const char *parv[]);
15
16struct Message hgtg_msgtab = {
17 "42", 0, 0, 0, MFLG_SLOW,
18 { mg_ignore, {mclient_42, 0}, mg_ignore, mg_ignore, mg_ignore, {mclient_42, 0}
19 }
20};
21
22mapi_clist_av1 hgtg_clist[] = { &hgtg_msgtab, NULL };
23
24
25DECLARE_MODULE_AV1(42, NULL, NULL, hgtg_clist, NULL, NULL, "Revision 0.42");
26
27
28static int
29mclient_42(struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
30{
5366977b 31 sendto_one_notice(source_p, ":The Answer to Life, the Universe, and Everything.");
212380e3 32 return 0;
33}
34
35