]> jfr.im git - solanum.git/blobdiff - modules/m_locops.c
msg: remove last vestiges of the fakelag system. charybdis has never supported fakelag.
[solanum.git] / modules / m_locops.c
index bf2e01447ed9648157b13abe7bc45f4d2178e776..7df9e2ef6bbded34b86a7e61fc769875c5c8be0c 100644 (file)
 #include "modules.h"
 #include "s_serv.h"
 
-static int m_locops(struct Client *, struct Client *, int, const char **);
-static int ms_locops(struct Client *, struct Client *, int, const char **);
-static int me_locops(struct Client *, struct Client *, int, const char **);
+static int m_locops(struct MsgBuf *, struct Client *, struct Client *, int, const char **);
+static int ms_locops(struct MsgBuf *, struct Client *, struct Client *, int, const char **);
+static int me_locops(struct MsgBuf *, struct Client *, struct Client *, int, const char **);
 
 struct Message locops_msgtab = {
-       "LOCOPS", 0, 0, 0, MFLG_SLOW,
+       "LOCOPS", 0, 0, 0, 0,
        {mg_unreg, mg_not_oper, {ms_locops, 3}, mg_ignore, {me_locops, 2}, {m_locops, 2}}
 };
 
@@ -54,14 +54,13 @@ DECLARE_MODULE_AV1(locops, NULL, NULL, locops_clist, NULL, NULL, "$Revision: 254
 /*
  * m_locops - LOCOPS message handler
  * (write to *all* local opers currently online)
- *      parv[0] = sender prefix
  *      parv[1] = message text
  */
 static int
-m_locops(struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
+m_locops(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
 {
        sendto_wallops_flags(UMODE_LOCOPS, source_p, "LOCOPS - %s", parv[1]);
-       
+
        if(rb_dlink_list_length(&cluster_conf_list) > 0)
                cluster_generic(source_p, "LOCOPS", SHARED_LOCOPS, CAP_CLUSTER,
                                ":%s", parv[1]);
@@ -70,12 +69,12 @@ m_locops(struct Client *client_p, struct Client *source_p, int parc, const char
 }
 
 static int
-ms_locops(struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
+ms_locops(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
 {
-       /* parv[0]  parv[1]      parv[2]
-        * oper     target serv  message
+       /* source_p  parv[1]      parv[2]
+        * oper      target serv  message
         */
-       propagate_generic(source_p, "LOCOPS", parv[1], CAP_CLUSTER, 
+       propagate_generic(source_p, "LOCOPS", parv[1], CAP_CLUSTER,
                                ":%s", parv[2]);
 
        if(!match(parv[1], me.name))
@@ -88,7 +87,7 @@ ms_locops(struct Client *client_p, struct Client *source_p, int parc, const char
 }
 
 static int
-me_locops(struct Client *client_p, struct Client *source_p,
+me_locops(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p,
                int parc, const char *parv[])
 {
        if(!IsPerson(source_p))