]> jfr.im git - solanum.git/blobdiff - modules/m_ping.c
modules: Add AV2 descriptions to all m_p* modules
[solanum.git] / modules / m_ping.c
index 16c13bd80caeebdf09e840d379e9c2eee8f28aa8..e9063271e6b5c06c26180c80fb1b697a5e3214f1 100644 (file)
@@ -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"
 #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 **);
+static const char ping_desc[] =
+       "Provides the PING command to ensure a client or server is still alive";
 
 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
@@ -54,7 +54,7 @@ DECLARE_MODULE_AV1(ping, NULL, NULL, ping_clist, NULL, NULL, "$Revision: 254 $")
 **      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;
@@ -85,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;