]> jfr.im git - solanum.git/blobdiff - modules/m_signon.c
msg: remove last vestiges of the fakelag system. charybdis has never supported fakelag.
[solanum.git] / modules / m_signon.c
index f2d25aeb51cb0e94042207845deed22b38856c86..4b4d83073da08854db95defc236609dd6642785d 100644 (file)
 #include "match.h"
 #include "s_user.h"
 
-static int me_svslogin(struct Client *, struct Client *, int, const char **);
-static int ms_signon(struct Client *, struct Client *, int, const char **);
+static int me_svslogin(struct MsgBuf *, struct Client *, struct Client *, int, const char **);
+static int ms_signon(struct MsgBuf *, struct Client *, struct Client *, int, const char **);
 
 static void send_signon(struct Client *, struct Client *, const char *, const char *, const char *, unsigned int, const char *);
 
 struct Message svslogin_msgtab = {
-       "SVSLOGIN", 0, 0, 0, MFLG_SLOW,
+       "SVSLOGIN", 0, 0, 0, 0,
        {mg_ignore, mg_ignore, mg_ignore, mg_ignore, {me_svslogin, 6}, mg_ignore}
 };
 struct Message signon_msgtab = {
-       "SIGNON", 0, 0, 0, MFLG_SLOW,
+       "SIGNON", 0, 0, 0, 0,
        {mg_ignore, mg_ignore, {ms_signon, 6}, mg_ignore, mg_ignore, mg_ignore}
 };
 
@@ -114,7 +114,7 @@ clean_host(const char *host)
 }
 
 static int
-me_svslogin(struct Client *client_p, struct Client *source_p,
+me_svslogin(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p,
        int parc, const char *parv[])
 {
        struct Client *target_p, *exist_p;
@@ -244,7 +244,7 @@ me_svslogin(struct Client *client_p, struct Client *source_p,
 }
 
 static int
-ms_signon(struct Client *client_p, struct Client *source_p,
+ms_signon(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p,
        int parc, const char *parv[])
 {
        struct Client *target_p;