Remove support for MODE_HIDECHANS

This commit is contained in:
Sam Dodrill 2015-02-20 23:18:29 -08:00
parent 79d4d97717
commit 2eb6524571
6 changed files with 2 additions and 8 deletions

View File

@ -25,6 +25,4 @@ User modes: (* designates that the umode is oper only)
+G - "soft caller id" mode - same as +g but automatically allows
anyone who's in a common channel with you to message you.
+V - Prevents you from receiving invites.
+I - Prevents non-opers from seeing your channel list in
a whois query.
+Z - Is connected via SSL (set only on connection).

View File

@ -14,8 +14,6 @@ User modes: (? designates that the umode is provided by an extension
+B - Marks you as a bot in /whois.
+C - Prevents you from receiving CTCPs other than ACTION.
+D - Deaf - ignores all channel messages.
+I - Prevents non-opers from seeing your channel list in
a whois query.
+Q - Prevents you from being affected by channel forwarding.
+R - Prevents non accept unidentified users from messaging you.
+G - "soft caller id" mode - same as +g but automatically allows

View File

@ -419,7 +419,6 @@ struct ListClient {
#define UMODE_NOINVITE 0x0800 /* block invites */
#define UMODE_BOT 0x8000 /* mark as a bot in whois */
#define UMODE_SCALLERID 0x40000 /* soft caller id */
#define UMODE_HIDECHANS 0x80000 /* hide channels in whois */
/* user information flags, only settable by remote mode or local oper */
#define UMODE_OPER 0x1000 /* Operator */

View File

@ -262,7 +262,7 @@ single_whois(struct Client *source_p, struct Client *target_p, int operspy)
t = buf + mlen;
if (!IsService(target_p) && (!(target_p->umodes & UMODE_HIDECHANS) || IsOper(source_p))) {
if (!IsService(target_p)) {
RB_DLINK_FOREACH(ptr, target_p->user->channel.head) {
msptr = ptr->data;
chptr = msptr->chptr;

View File

@ -296,7 +296,6 @@ static struct mode_table umode_table[] = {
{"noinvite", UMODE_NOINVITE },
{"bot", UMODE_BOT },
{"override", UMODE_OVERRIDE },
{"hidechans", UMODE_HIDECHANS },
{NULL, 0}
};

View File

@ -74,7 +74,7 @@ int user_modes[256] = {
0, /* F */
UMODE_SCALLERID, /* G */
0, /* H */
UMODE_HIDECHANS, /* I */
0, /* I */
0, /* J */
0, /* K */
0, /* L */