]> jfr.im git - solanum.git/blobdiff - modules/m_admin.c
extensions/umode_hide_idle_time: mask times for hidden sources (#373)
[solanum.git] / modules / m_admin.c
index 943fac0a7cdafd45c82cdac3601eb2e479331008..955ea42fd75696ef39b60459a351d8d6c58611cf 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_admin.c 3368 2007-04-03 10:11:06Z nenolod $
  */
 
 #include "stdinc.h"
 #include "hook.h"
 #include "modules.h"
 
-static int m_admin(struct MsgBuf *, struct Client *, struct Client *, int, const char **);
-static int mr_admin(struct MsgBuf *, struct Client *, struct Client *, int, const char **);
-static int ms_admin(struct MsgBuf *, struct Client *, struct Client *, int, const char **);
+const char admin_desc[] =
+       "Provides the ADMIN command to show server administrator information";
+
+static void m_admin(struct MsgBuf *, struct Client *, struct Client *, int, const char **);
+static void mr_admin(struct MsgBuf *, struct Client *, struct Client *, int, const char **);
+static void ms_admin(struct MsgBuf *, struct Client *, struct Client *, int, const char **);
 static void do_admin(struct Client *source_p);
 
 static void admin_spy(struct Client *);
 
 struct Message admin_msgtab = {
-       "ADMIN", 0, 0, 0, MFLG_SLOW | MFLG_UNREG,
+       "ADMIN", 0, 0, 0, 0,
        {{mr_admin, 0}, {m_admin, 0}, {ms_admin, 0}, mg_ignore, mg_ignore, {ms_admin, 0}}
 };
 
@@ -56,13 +57,13 @@ mapi_hlist_av1 admin_hlist[] = {
        { NULL, NULL }
 };
 
-DECLARE_MODULE_AV1(admin, NULL, NULL, admin_clist, admin_hlist, NULL, "$Revision: 3368 $");
+DECLARE_MODULE_AV2(admin, NULL, NULL, admin_clist, admin_hlist, NULL, NULL, NULL, admin_desc);
 
 /*
  * mr_admin - ADMIN command handler
  *      parv[1] = servername
  */
-static int
+static void
 mr_admin(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
 {
        static time_t last_used = 0L;
@@ -73,21 +74,19 @@ mr_admin(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source
                           me.name,
                           EmptyString(source_p->name) ? "*" : source_p->name,
                           "ADMIN");
-               return 0;
+               return;
        }
        else
                last_used = rb_current_time();
 
        do_admin(source_p);
-
-       return 0;
 }
 
 /*
  * m_admin - ADMIN command handler
  *      parv[1] = servername
  */
-static int
+static void
 m_admin(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
 {
        static time_t last_used = 0L;
@@ -98,18 +97,16 @@ m_admin(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_
                {
                        sendto_one(source_p, form_str(RPL_LOAD2HI),
                                   me.name, source_p->name, "ADMIN");
-                       return 0;
+                       return;
                }
                else
                        last_used = rb_current_time();
 
                if(hunt_server(client_p, source_p, ":%s ADMIN :%s", 1, parc, parv) != HUNTED_ISME)
-                       return 0;
+                       return;
        }
 
        do_admin(source_p);
-
-       return 0;
 }
 
 
@@ -117,15 +114,13 @@ m_admin(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_
  * ms_admin - ADMIN command handler, used for OPERS as well
  *      parv[1] = servername
  */
-static int
+static void
 ms_admin(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 ADMIN :%s", 1, parc, parv) != HUNTED_ISME)
-               return 0;
+               return;
 
        do_admin(source_p);
-
-       return 0;
 }