]> jfr.im git - solanum.git/blobdiff - extensions/chm_sslonly.c
Merge pull request #302 from edk0/sasl-usercloak
[solanum.git] / extensions / chm_sslonly.c
index 2808bb18ace7782fd0645ad426d207f76700a7e0..2cbc7a47ef9d9557e8d6f1a2bf7c027a6e2f7edf 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)
@@ -45,7 +47,8 @@ h_can_join(hook_data_channel *data)
        struct Channel *chptr = data->chptr;
 
        if((chptr->mode.mode & mymode) && !IsSSLClient(source_p)) {
-               sendto_one_notice(source_p, ":Only users using SSL could join this channel!");
+               /* 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;
        }
 }