]> jfr.im git - solanum.git/blobdiff - modules/m_close.c
Combine stats A output parameters (#35)
[solanum.git] / modules / m_close.c
index e352bc5ace6e7cb40e85911db811bdc9d961808d..4a70cd4611e1c0fbbacbe9e0574aa9ece942d404 100644 (file)
  *  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_close.c 254 2005-09-21 23:35:12Z nenolod $
  */
 
 #include "stdinc.h"
-#include "tools.h"
 #include "client.h"
 #include "ircd.h"
 #include "numeric.h"
-#include "commio.h"
 #include "send.h"
 #include "msg.h"
 #include "parse.h"
 #include "modules.h"
 
-static int mo_close(struct Client *, struct Client *, int, const char **);
+static const char close_desc[] = "Provides the CLOSE command to clear all unfinished connections";
+
+static void mo_close(struct MsgBuf *, struct Client *, struct Client *, int, const char **);
 
 struct Message close_msgtab = {
-       "CLOSE", 0, 0, 0, MFLG_SLOW,
+       "CLOSE", 0, 0, 0, 0,
        {mg_unreg, mg_not_oper, mg_ignore, mg_ignore, mg_ignore, {mo_close, 0}}
 };
 
 mapi_clist_av1 close_clist[] = { &close_msgtab, NULL };
-DECLARE_MODULE_AV1(close, NULL, NULL, close_clist, NULL, NULL, "$Revision: 254 $");
+
+DECLARE_MODULE_AV2(close, NULL, NULL, close_clist, NULL, NULL, NULL, NULL, close_desc);
 
 /*
  * mo_close - CLOSE message handler
  *  - added by Darren Reed Jul 13 1992.
  */
-static int
-mo_close(struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
+static void
+mo_close(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
 {
        struct Client *target_p;
-       dlink_node *ptr;
-       dlink_node *ptr_next;
+       rb_dlink_node *ptr;
+       rb_dlink_node *ptr_next;
        int closed = 0;
 
-       DLINK_FOREACH_SAFE(ptr, ptr_next, unknown_list.head)
+       RB_DLINK_FOREACH_SAFE(ptr, ptr_next, unknown_list.head)
        {
                target_p = ptr->data;
 
@@ -69,5 +68,4 @@ mo_close(struct Client *client_p, struct Client *source_p, int parc, const char
        }
 
        sendto_one(source_p, form_str(RPL_CLOSEEND), me.name, source_p->name, closed);
-       return 0;
 }