]> arthur.barton.de Git - ngircd-alex.git/commitdiff
Recognize user mode "R"
authorDNS777 <dns@rbose.org>
Thu, 23 Aug 2012 09:25:30 +0000 (09:25 +0000)
committerAlexander Barton <alex@barton.de>
Sun, 26 Aug 2012 13:30:49 +0000 (15:30 +0200)
This allows users to unset the user mode "R".

src/ngircd/irc-mode.c
src/ngircd/messages.h

index fa35cdd0f29d7742d92c169f6ce992a56eaa1ca5..1776936024c23d85232eaaa09805019f93aac134 100644 (file)
@@ -256,6 +256,15 @@ Client_Mode( CLIENT *Client, REQUEST *Req, CLIENT *Origin, CLIENT *Target )
                                                        ERR_RESTRICTED_MSG,
                                                        Client_ID(Origin));
                        break;
+               case 'R': /* Registered (only unsettable) */
+                       if (!set || Client_Type(Client) == CLIENT_SERVICE
+                                || Client_Type(Client) == CLIENT_SERVER)
+                               x[0] = 'R';
+                       else
+                               ok = IRC_WriteStrClient(Origin,
+                                                       ERR_NICKREGISTER_MSG,
+                                                       Client_ID(Origin));
+                       break;
                case 'x': /* Cloak hostname */
                        if (Client_HasMode(Client, 'r'))
                                ok = IRC_WriteStrClient(Origin,
index 9ad6be1763d569f7af3b486e3620930f15127516..4aed70f39c783e421627f0a9b0e24bd6a587661c 100644 (file)
 #define ERR_CHANOPRIVSNEEDED_MSG       "482 %s %s :You are not channel operator"
 #define ERR_CANTKILLSERVER_MSG         "483 %s :You can't kill a server!"
 #define ERR_RESTRICTED_MSG             "484 %s :Your connection is restricted"
+#define ERR_NICKREGISTER_MSG           "484 %s :Cannot set user mode (+R) -- Use IRC services"
 #define ERR_NOOPERHOST_MSG             "491 %s :Not configured for your host"
 #define ERR_NOTONSAMECHANNEL_MSG       "493 %s :You must share a common channel with %s"