]> jfr.im git - solanum.git/blobdiff - modules/m_ping.c
msg: remove last vestiges of the fakelag system. charybdis has never supported fakelag.
[solanum.git] / modules / m_ping.c
index 6269c54ee931457c1b213fe14371df5f7aa2d2e4..dd266ca96cfb90699bbefe8183a63ed767276715 100644 (file)
 #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 int m_ping(struct MsgBuf *, struct Client *, struct Client *, int, const char **);
+static int 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}}
 };
 
@@ -50,12 +50,11 @@ DECLARE_MODULE_AV1(ping, NULL, NULL, ping_clist, NULL, NULL, "$Revision: 254 $")
 
 /*
 ** m_ping
-**      parv[0] = sender prefix
 **      parv[1] = origin
 **      parv[2] = destination
 */
 static int
-m_ping(struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
+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;
@@ -86,7 +85,7 @@ m_ping(struct Client *client_p, struct Client *source_p, int parc, const char *p
 }
 
 static int
-ms_ping(struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
+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;
@@ -97,7 +96,7 @@ ms_ping(struct Client *client_p, struct Client *source_p, int parc, const char *
           irccmp(destination, me.id))
        {
                if((target_p = find_client(destination)) && IsServer(target_p))
-                       sendto_one(target_p, ":%s PING %s :%s", 
+                       sendto_one(target_p, ":%s PING %s :%s",
                                   get_id(source_p, target_p), source_p->name,
                                   get_id(target_p, target_p));
                /* not directed at an id.. */
@@ -107,8 +106,8 @@ ms_ping(struct Client *client_p, struct Client *source_p, int parc, const char *
                                           destination);
        }
        else
-               sendto_one(source_p, ":%s PONG %s :%s", 
-                          get_id(&me, source_p), me.name, 
+               sendto_one(source_p, ":%s PONG %s :%s",
+                          get_id(&me, source_p), me.name,
                           get_id(source_p, source_p));
 
        return 0;