]> jfr.im git - solanum.git/blobdiff - extensions/chm_sslonly.c
Stop using chm_nosuch as a sentinel value (#53)
[solanum.git] / extensions / chm_sslonly.c
index 7ae8e8b4e1245bf86d23f5924d0c56cc21bb9d32..4c233ccc132dde62268139671ad58c9bfed51bc2 100644 (file)
@@ -10,6 +10,9 @@
 #include "numeric.h"
 #include "chmode.h"
 
+static const char chm_sslonly_desc[] =
+       "Adds channel mode +S that bans non-SSL users from joing a channel";
+
 static void h_can_join(hook_data_channel *);
 
 mapi_hfn_list_av1 sslonly_hfnlist[] = {
@@ -29,14 +32,13 @@ _modinit(void)
        return 0;
 }
 
-
 static void
 _moddeinit(void)
 {
        cflag_orphan('S');
 }
 
-DECLARE_MODULE_AV1(chm_sslonly, _modinit, _moddeinit, NULL, NULL, sslonly_hfnlist, "$Revision$");
+DECLARE_MODULE_AV2(chm_sslonly, _modinit, _moddeinit, NULL, NULL, sslonly_hfnlist, NULL, NULL, chm_sslonly_desc);
 
 static void
 h_can_join(hook_data_channel *data)
@@ -44,8 +46,9 @@ h_can_join(hook_data_channel *data)
        struct Client *source_p = data->client;
        struct Channel *chptr = data->chptr;
 
-       if((chptr->mode.mode & mymode) && !IsSSLClient(source_p)) {
-               sendto_one_notice(source_p, ":Only users using SSL can join this channel!");
+       if((chptr->mode.mode & mymode) && !IsSecureClient(source_p)) {
+               /* XXX This is equal to ERR_THROTTLE */
+               sendto_one_numeric(source_p, 480, "%s :Cannot join channel (+S) - SSL/TLS required", chptr->chname);
                data->approved = ERR_CUSTOM;
        }
 }