]> jfr.im git - irc/rqf/shadowircd.git/blame - modules/m_ping.c
autogen.sh is not necessary at this time, and did not work anyway.
[irc/rqf/shadowircd.git] / modules / m_ping.c
CommitLineData
212380e3 1/*
2 * ircd-ratbox: A slightly useful ircd.
3 * m_ping.c: Requests that a PONG message be sent back.
4 *
5 * Copyright (C) 1990 Jarkko Oikarinen and University of Oulu, Co Center
6 * Copyright (C) 1996-2002 Hybrid Development Team
7 * Copyright (C) 2002-2005 ircd-ratbox development team
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
22 * USA
23 *
24 * $Id: m_ping.c 254 2005-09-21 23:35:12Z nenolod $
25 */
26
27#include "stdinc.h"
28#include "client.h"
29#include "ircd.h"
30#include "numeric.h"
31#include "send.h"
13ae2f4b 32#include "match.h"
212380e3 33#include "msg.h"
34#include "parse.h"
35#include "modules.h"
36#include "hash.h"
37#include "s_conf.h"
38#include "s_serv.h"
39
40static int m_ping(struct Client *, struct Client *, int, const char **);
41static int ms_ping(struct Client *, struct Client *, int, const char **);
42
43struct Message ping_msgtab = {
44 "PING", 0, 0, 0, MFLG_SLOW,
45 {mg_unreg, {m_ping, 2}, {ms_ping, 2}, {ms_ping, 2}, mg_ignore, {m_ping, 2}}
46};
47
48mapi_clist_av1 ping_clist[] = { &ping_msgtab, NULL };
49DECLARE_MODULE_AV1(ping, NULL, NULL, ping_clist, NULL, NULL, "$Revision: 254 $");
50
51/*
52** m_ping
212380e3 53** parv[1] = origin
54** parv[2] = destination
55*/
56static int
57m_ping(struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
58{
59 struct Client *target_p;
60 const char *destination;
61
62 destination = parv[2]; /* Will get NULL or pointer (parc >= 2!!) */
63
64 if(!EmptyString(destination) && !match(destination, me.name))
65 {
66 if((target_p = find_server(source_p, destination)))
67 {
68 sendto_one(target_p, ":%s PING %s :%s",
69 get_id(source_p, target_p),
70 source_p->name, get_id(target_p, target_p));
71 }
72 else
73 {
74 sendto_one_numeric(source_p, ERR_NOSUCHSERVER,
75 form_str(ERR_NOSUCHSERVER),
76 destination);
77 return 0;
78 }
79 }
80 else
81 sendto_one(source_p, ":%s PONG %s :%s", me.name,
82 (destination) ? destination : me.name, parv[1]);
83
84 return 0;
85}
86
87static int
88ms_ping(struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
89{
90 struct Client *target_p;
91 const char *destination;
92
93 destination = parv[2]; /* Will get NULL or pointer (parc >= 2!!) */
94
95 if(!EmptyString(destination) && irccmp(destination, me.name) &&
96 irccmp(destination, me.id))
97 {
98 if((target_p = find_client(destination)) && IsServer(target_p))
99 sendto_one(target_p, ":%s PING %s :%s",
100 get_id(source_p, target_p), source_p->name,
101 get_id(target_p, target_p));
102 /* not directed at an id.. */
103 else if(!IsDigit(*destination))
104 sendto_one_numeric(source_p, ERR_NOSUCHSERVER,
105 form_str(ERR_NOSUCHSERVER),
106 destination);
107 }
108 else
109 sendto_one(source_p, ":%s PONG %s :%s",
110 get_id(&me, source_p), me.name,
111 get_id(source_p, source_p));
112
113 return 0;
114}