]> jfr.im git - solanum.git/blobdiff - modules/m_invite.c
starttls: use the client connid instead of the FD for opening the channel with ssld
[solanum.git] / modules / m_invite.c
index f9abe46c76619fff0aec4cd0955fec4d39a23608..bd9aeefb6185f80b044ec3945fe53732581ba009 100644 (file)
@@ -23,7 +23,6 @@
  */
 
 #include "stdinc.h"
-#include "common.h"
 #include "channel.h"
 #include "client.h"
 #include "hash.h"
 #include "packet.h"
 #include "tgchange.h"
 
-static int m_invite(struct MsgBuf *, struct Client *, struct Client *, int, const char **);
+static const char invite_desc[] = "Provides facilities for invite and related notifications";
+
+static void m_invite(struct MsgBuf *, struct Client *, struct Client *, int, const char **);
 static unsigned int CAP_INVITE_NOTIFY = 0;
 
 struct Message invite_msgtab = {
        "INVITE", 0, 0, 0, 0,
        {mg_unreg, {m_invite, 3}, {m_invite, 3}, mg_ignore, mg_ignore, {m_invite, 3}}
 };
-mapi_clist_av1 invite_clist[] = { &invite_msgtab, NULL };
 
-static int
-invite_modinit(void)
-{
-       CAP_INVITE_NOTIFY = capability_put(cli_capindex, "invite-notify", NULL);
-       return 0;
-}
+mapi_clist_av1 invite_clist[] = { &invite_msgtab, NULL };
 
-static void
-invite_moddeinit(void)
-{
-       capability_orphan(cli_capindex, "invite-notify");
-}
+mapi_cap_list_av2 invite_cap_list[] = {
+       { MAPI_CAP_CLIENT, "invite-notify", NULL, &CAP_INVITE_NOTIFY },
+       { 0, NULL, NULL, NULL }
+};
 
-DECLARE_MODULE_AV2(invite, invite_modinit, invite_moddeinit, invite_clist, NULL, NULL, NULL, NULL, NULL);
+DECLARE_MODULE_AV2(invite, NULL, NULL, invite_clist, NULL, NULL, invite_cap_list, NULL, invite_desc);
 
 static void add_invite(struct Channel *, struct Client *);
 
@@ -69,7 +63,7 @@ static void add_invite(struct Channel *, struct Client *);
  *      parv[1] - user to invite
  *      parv[2] - channel name
  */
-static int
+static void
 m_invite(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
 {
        struct Client *target_p;
@@ -94,7 +88,7 @@ m_invite(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source
                        sendto_one_numeric(source_p, ERR_NOSUCHNICK,
                                           form_str(ERR_NOSUCHNICK),
                                           parv[1]);
-               return 0;
+               return;
        }
 
        if(check_channel_name(parv[2]) == 0)
@@ -102,7 +96,7 @@ m_invite(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source
                sendto_one_numeric(source_p, ERR_BADCHANNAME,
                                   form_str(ERR_BADCHANNAME),
                                   parv[2]);
-               return 0;
+               return;
        }
 
        /* Do not send local channel invites to users if they are not on the
@@ -112,7 +106,7 @@ m_invite(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source
        {
                sendto_one(source_p, form_str(ERR_USERNOTONSERV),
                           me.name, source_p->name, target_p->name);
-               return 0;
+               return;
        }
 
        if(((MyConnect(source_p) && !IsExemptResv(source_p)) ||
@@ -122,14 +116,14 @@ m_invite(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source
                sendto_one_numeric(source_p, ERR_BADCHANNAME,
                                   form_str(ERR_BADCHANNAME),
                                   parv[2]);
-               return 0;
+               return;
        }
 
        if((chptr = find_channel(parv[2])) == NULL)
        {
                sendto_one_numeric(source_p, ERR_NOSUCHCHANNEL,
                                   form_str(ERR_NOSUCHCHANNEL), parv[2]);
-               return 0;
+               return;
        }
 
        msptr = find_channel_membership(chptr, source_p);
@@ -137,7 +131,7 @@ m_invite(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source
        {
                sendto_one_numeric(source_p, ERR_NOTONCHANNEL,
                                   form_str(ERR_NOTONCHANNEL), parv[2]);
-               return 0;
+               return;
        }
 
        if(IsMember(target_p, chptr))
@@ -145,7 +139,7 @@ m_invite(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source
                sendto_one_numeric(source_p, ERR_USERONCHANNEL,
                                   form_str(ERR_USERONCHANNEL),
                                   target_p->name, parv[2]);
-               return 0;
+               return;
        }
 
        /* unconditionally require ops, unless the channel is +g */
@@ -155,7 +149,7 @@ m_invite(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source
        {
                sendto_one(source_p, form_str(ERR_CHANOPRIVSNEEDED),
                           me.name, source_p->name, parv[2]);
-               return 0;
+               return;
        }
 
        /* store invites when they could affect the ability to join
@@ -174,7 +168,7 @@ m_invite(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source
                {
                        sendto_one(source_p, form_str(ERR_TARGCHANGE),
                                   me.name, source_p->name, target_p->name);
-                       return 0;
+                       return;
                }
                sendto_one(source_p, form_str(RPL_INVITING),
                           me.name, source_p->name,
@@ -188,7 +182,7 @@ m_invite(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source
        {
                /* this should never be less than */
                if(atol(parv[3]) > chptr->channelts)
-                       return 0;
+                       return;
        }
 
        if(MyConnect(target_p))
@@ -202,7 +196,7 @@ m_invite(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source
                                sendto_one_numeric(source_p, ERR_NONONREG,
                                                form_str(ERR_NONONREG),
                                                target_p->name);
-                               return 0;
+                               return;
                        }
                        else
                        {
@@ -215,7 +209,7 @@ m_invite(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source
                                        sendto_one_numeric(source_p, ERR_TARGUMODEG,
                                                           form_str(ERR_TARGUMODEG),
                                                           target_p->name);
-                                       return 0;
+                                       return;
                                }
                                target_p->localClient->last_caller_id_time = rb_current_time();
                        }
@@ -241,8 +235,6 @@ m_invite(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source
        sendto_server(source_p, chptr, CAP_TS6, 0, ":%s INVITE %s %s %lu",
                      use_id(source_p), use_id(target_p),
                      chptr->chname, (unsigned long) chptr->channelts);
-
-       return 0;
 }
 
 /* add_invite()