]> jfr.im git - irc/rqf/shadowircd.git/blame - extensions/m_42.c
[svn] - keyword-subst from charybdis 2.2.
[irc/rqf/shadowircd.git] / extensions / m_42.c
CommitLineData
212380e3 1/*
2 * Copyright (C) infinity-infinity God <God@Heaven>
3 *
4 * Bob was here
5 * $Id: m_42.c 6 2005-09-10 01:02:21Z nenolod $
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{
31 sendto_one(source_p, ":%s NOTICE %s :The Answer to Life, the Universe, and Everything.",
32 me.name, source_p->name);
33 return 0;
34}
35
36