2 * ircd-ratbox: A slightly useful ircd.
3 * m_ping.c: Requests that a PONG message be sent back.
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
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.
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.
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
30 #include "irc_string.h"
38 static int m_ping(struct Client
*, struct Client
*, int, const char **);
39 static int ms_ping(struct Client
*, struct Client
*, int, const char **);
41 struct Message ping_msgtab
= {
42 "PING", 0, 0, 0, MFLG_SLOW
,
43 {mg_unreg
, {m_ping
, 2}, {ms_ping
, 2}, {ms_ping
, 2}, mg_ignore
, {m_ping
, 2}}
46 mapi_clist_av1 ping_clist
[] = { &ping_msgtab
, NULL
};
47 DECLARE_MODULE_AV1(ping
, NULL
, NULL
, ping_clist
, NULL
, NULL
, "$Revision: 26 $");
51 ** parv[0] = sender prefix
53 ** parv[2] = destination
56 m_ping(struct Client
*client_p
, struct Client
*source_p
, int parc
, const char *parv
[])
58 struct Client
*target_p
;
59 const char *destination
;
61 destination
= parv
[2]; /* Will get NULL or pointer (parc >= 2!!) */
63 if(!EmptyString(destination
) && !match(destination
, me
.name
))
65 if((target_p
= find_server(source_p
, destination
)))
67 sendto_one(target_p
, ":%s PING %s :%s",
68 get_id(source_p
, target_p
),
69 source_p
->name
, get_id(target_p
, target_p
));
73 sendto_one_numeric(source_p
, ERR_NOSUCHSERVER
,
74 form_str(ERR_NOSUCHSERVER
),
80 sendto_one(source_p
, ":%s PONG %s :%s", me
.name
,
81 (destination
) ? destination
: me
.name
, parv
[1]);
87 ms_ping(struct Client
*client_p
, struct Client
*source_p
, int parc
, const char *parv
[])
89 struct Client
*target_p
;
90 const char *destination
;
92 destination
= parv
[2]; /* Will get NULL or pointer (parc >= 2!!) */
94 if(!EmptyString(destination
) && irccmp(destination
, me
.name
) &&
95 irccmp(destination
, me
.id
))
97 if((target_p
= find_client(destination
)) && IsServer(target_p
))
98 sendto_one(target_p
, ":%s PING %s :%s",
99 get_id(source_p
, target_p
), source_p
->name
,
100 get_id(target_p
, target_p
));
101 /* not directed at an id.. */
102 else if(!IsDigit(*destination
))
103 sendto_one_numeric(source_p
, ERR_NOSUCHSERVER
,
104 form_str(ERR_NOSUCHSERVER
),
108 sendto_one(source_p
, ":%s PONG %s :%s",
109 get_id(&me
, source_p
), me
.name
,
110 get_id(source_p
, source_p
));