Remove support for MODE_HIDECHANS
This commit is contained in:
parent
79d4d97717
commit
2eb6524571
|
@ -25,6 +25,4 @@ User modes: (* designates that the umode is oper only)
|
||||||
+G - "soft caller id" mode - same as +g but automatically allows
|
+G - "soft caller id" mode - same as +g but automatically allows
|
||||||
anyone who's in a common channel with you to message you.
|
anyone who's in a common channel with you to message you.
|
||||||
+V - Prevents you from receiving invites.
|
+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).
|
+Z - Is connected via SSL (set only on connection).
|
||||||
|
|
|
@ -14,8 +14,6 @@ User modes: (? designates that the umode is provided by an extension
|
||||||
+B - Marks you as a bot in /whois.
|
+B - Marks you as a bot in /whois.
|
||||||
+C - Prevents you from receiving CTCPs other than ACTION.
|
+C - Prevents you from receiving CTCPs other than ACTION.
|
||||||
+D - Deaf - ignores all channel messages.
|
+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.
|
+Q - Prevents you from being affected by channel forwarding.
|
||||||
+R - Prevents non accept unidentified users from messaging you.
|
+R - Prevents non accept unidentified users from messaging you.
|
||||||
+G - "soft caller id" mode - same as +g but automatically allows
|
+G - "soft caller id" mode - same as +g but automatically allows
|
||||||
|
|
|
@ -419,7 +419,6 @@ struct ListClient {
|
||||||
#define UMODE_NOINVITE 0x0800 /* block invites */
|
#define UMODE_NOINVITE 0x0800 /* block invites */
|
||||||
#define UMODE_BOT 0x8000 /* mark as a bot in whois */
|
#define UMODE_BOT 0x8000 /* mark as a bot in whois */
|
||||||
#define UMODE_SCALLERID 0x40000 /* soft caller id */
|
#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 */
|
/* user information flags, only settable by remote mode or local oper */
|
||||||
#define UMODE_OPER 0x1000 /* Operator */
|
#define UMODE_OPER 0x1000 /* Operator */
|
||||||
|
|
|
@ -262,7 +262,7 @@ single_whois(struct Client *source_p, struct Client *target_p, int operspy)
|
||||||
|
|
||||||
t = buf + mlen;
|
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) {
|
RB_DLINK_FOREACH(ptr, target_p->user->channel.head) {
|
||||||
msptr = ptr->data;
|
msptr = ptr->data;
|
||||||
chptr = msptr->chptr;
|
chptr = msptr->chptr;
|
||||||
|
|
|
@ -296,7 +296,6 @@ static struct mode_table umode_table[] = {
|
||||||
{"noinvite", UMODE_NOINVITE },
|
{"noinvite", UMODE_NOINVITE },
|
||||||
{"bot", UMODE_BOT },
|
{"bot", UMODE_BOT },
|
||||||
{"override", UMODE_OVERRIDE },
|
{"override", UMODE_OVERRIDE },
|
||||||
{"hidechans", UMODE_HIDECHANS },
|
|
||||||
{NULL, 0}
|
{NULL, 0}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -74,7 +74,7 @@ int user_modes[256] = {
|
||||||
0, /* F */
|
0, /* F */
|
||||||
UMODE_SCALLERID, /* G */
|
UMODE_SCALLERID, /* G */
|
||||||
0, /* H */
|
0, /* H */
|
||||||
UMODE_HIDECHANS, /* I */
|
0, /* I */
|
||||||
0, /* J */
|
0, /* J */
|
||||||
0, /* K */
|
0, /* K */
|
||||||
0, /* L */
|
0, /* L */
|
||||||
|
|
Loading…
Reference in New Issue