X-Git-Url: https://jfr.im/git/solanum.git/blobdiff_plain/9e7c93067226337decd23dd4fa0ed40dc123f6f4..9d6b870d7bdc20a7e698c18299c0516d30d7d24b:/modules/m_ping.c diff --git a/modules/m_ping.c b/modules/m_ping.c index 16c13bd8..0c66656b 100644 --- a/modules/m_ping.c +++ b/modules/m_ping.c @@ -20,8 +20,6 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA - * - * $Id: m_ping.c 254 2005-09-21 23:35:12Z nenolod $ */ #include "stdinc.h" @@ -37,24 +35,28 @@ #include "s_conf.h" #include "s_serv.h" -static int m_ping(struct Client *, struct Client *, int, const char **); -static int ms_ping(struct Client *, struct Client *, int, const char **); +static const char ping_desc[] = + "Provides the PING command to ensure a client or server is still alive"; + +static void m_ping(struct MsgBuf *, struct Client *, struct Client *, int, const char **); +static void ms_ping(struct MsgBuf *, struct Client *, struct Client *, int, const char **); struct Message ping_msgtab = { - "PING", 0, 0, 0, MFLG_SLOW, + "PING", 0, 0, 0, 0, {mg_unreg, {m_ping, 2}, {ms_ping, 2}, {ms_ping, 2}, mg_ignore, {m_ping, 2}} }; mapi_clist_av1 ping_clist[] = { &ping_msgtab, NULL }; -DECLARE_MODULE_AV1(ping, NULL, NULL, ping_clist, NULL, NULL, "$Revision: 254 $"); + +DECLARE_MODULE_AV2(ping, NULL, NULL, ping_clist, NULL, NULL, NULL, NULL, ping_desc); /* ** m_ping ** parv[1] = origin ** parv[2] = destination */ -static int -m_ping(struct Client *client_p, struct Client *source_p, int parc, const char *parv[]) +static void +m_ping(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p, int parc, const char *parv[]) { struct Client *target_p; const char *destination; @@ -74,18 +76,16 @@ m_ping(struct Client *client_p, struct Client *source_p, int parc, const char *p sendto_one_numeric(source_p, ERR_NOSUCHSERVER, form_str(ERR_NOSUCHSERVER), destination); - return 0; + return; } } else sendto_one(source_p, ":%s PONG %s :%s", me.name, (destination) ? destination : me.name, parv[1]); - - return 0; } -static int -ms_ping(struct Client *client_p, struct Client *source_p, int parc, const char *parv[]) +static void +ms_ping(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p, int parc, const char *parv[]) { struct Client *target_p; const char *destination; @@ -109,6 +109,4 @@ ms_ping(struct Client *client_p, struct Client *source_p, int parc, const char * sendto_one(source_p, ":%s PONG %s :%s", get_id(&me, source_p), me.name, get_id(source_p, source_p)); - - return 0; }