]> jfr.im git - solanum.git/blobdiff - modules/m_motd.c
chmode: Get elevated access for op-only queries
[solanum.git] / modules / m_motd.c
index 47cfd4d7b9278df526a0571e6f6dfad0663b6309..f71ea801ce796a787154e1f890050760fd7ea67d 100644 (file)
 #include "cache.h"
 #include "ratelimit.h"
 
-static int m_motd(struct MsgBuf *, struct Client *, struct Client *, int, const char **);
-static int mo_motd(struct MsgBuf *, struct Client *, struct Client *, int, const char **);
+static const char motd_desc[] = "Provides the MOTD command to view the Message of the Day";
+
+static void m_motd(struct MsgBuf *, struct Client *, struct Client *, int, const char **);
+static void mo_motd(struct MsgBuf *, struct Client *, struct Client *, int, const char **);
 
 struct Message motd_msgtab = {
        "MOTD", 0, 0, 0, 0,
@@ -52,7 +54,7 @@ mapi_hlist_av1 motd_hlist[] = {
        { NULL, NULL }
 };
 
-DECLARE_MODULE_AV1(motd, NULL, NULL, motd_clist, motd_hlist, NULL, "$Revision: 254 $");
+DECLARE_MODULE_AV2(motd, NULL, NULL, motd_clist, motd_hlist, NULL, NULL, NULL, motd_desc);
 
 static void motd_spy(struct Client *);
 
@@ -60,46 +62,43 @@ static void motd_spy(struct Client *);
 ** m_motd
 **      parv[1] = servername
 */
-static int
+static void
 m_motd(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
 {
        static time_t last_used = 0;
 
-       if((last_used + ConfigFileEntry.pace_wait) > rb_current_time() || !ratelimit_client(source_p, 6))
-       {
+       if (parc < 2) {
+               /* do nothing */
+       } else if ((last_used + ConfigFileEntry.pace_wait) > rb_current_time() || !ratelimit_client(source_p, 6)) {
                /* safe enough to give this on a local connect only */
                sendto_one(source_p, form_str(RPL_LOAD2HI),
                           me.name, source_p->name, "MOTD");
                sendto_one(source_p, form_str(RPL_ENDOFMOTD),
                           me.name, source_p->name);
-               return 0;
-       }
-       else
+               return;
+       } else {
                last_used = rb_current_time();
+       }
 
        if(hunt_server(client_p, source_p, ":%s MOTD :%s", 1, parc, parv) != HUNTED_ISME)
-               return 0;
+               return;
 
        motd_spy(source_p);
        send_user_motd(source_p);
-
-       return 0;
 }
 
 /*
 ** mo_motd
 **      parv[1] = servername
 */
-static int
+static void
 mo_motd(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
 {
        if(hunt_server(client_p, source_p, ":%s MOTD :%s", 1, parc, parv) != HUNTED_ISME)
-               return 0;
+               return;
 
        motd_spy(source_p);
        send_user_motd(source_p);
-
-       return 0;
 }
 
 /* motd_spy()