1
0
mirror of https://github.com/irssi/irssi.git synced 2024-09-01 04:14:16 -04:00

Added '.' to known nick flag characters. Also supports having multiple flag

chars in /NAMES list, so eg. "@+nick" works or ".@nick" which is already
used by some servers.


git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2559 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Timo Sirainen 2002-03-10 16:00:38 +00:00 committed by cras
parent b89fb4a549
commit 15e716e283
2 changed files with 24 additions and 5 deletions

View File

@ -78,6 +78,7 @@ static void event_names_list(IRC_SERVER_REC *server, const char *data)
{
IRC_CHANNEL_REC *chanrec;
char *params, *type, *channel, *names, *ptr;
int op, halfop, voice;
g_return_if_fail(data != NULL);
@ -112,9 +113,27 @@ static void event_names_list(IRC_SERVER_REC *server, const char *data)
while (*names != '\0' && *names != ' ') names++;
if (*names != '\0') *names++ = '\0';
irc_nicklist_insert(chanrec, ptr+isnickflag(*ptr),
*ptr == '@', *ptr == '%', *ptr == '+',
FALSE);
/* some servers show ".@nick", there's also been talk about
showing "@+nick" and since none of these chars are valid
nick chars, just check them until a non-nickflag char is
found. FIXME: we just ignore owner char now. */
op = halfop = voice = FALSE;
while (isnickflag(*ptr)) {
switch (*ptr) {
case '@':
op = TRUE;
break;
case '%':
halfop = TRUE;
break;
case '+':
voice = TRUE;
break;
}
ptr++;
}
irc_nicklist_insert(chanrec, ptr, op, halfop, voice, FALSE);
}
g_free(params);

View File

@ -20,8 +20,8 @@ typedef struct _REDIRECT_REC REDIRECT_REC;
(a) == '+' || (a) == '=' || (a) == '-')
#define isnickflag(a) \
((a) == '@' || (a) == '+' || (a) == '%' || /* op / voice / half-op */ \
(a) == '-' || (a) == '~') /* no idea, just copied from somewhere.. */
((a) == '@' || (a) == '+' || (a) == '%' || /* op / voice */ \
(a) == '%' || (a) == '.') /* extensions: half-op / owner */
#define ischannel(a) \
((a) == '#' || /* normal */ \