diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2006-04-08 18:38:00 +0000 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2006-04-08 18:38:00 +0000 |
commit | c525b231e4a5c39d708fdf25b87c25f3d8a769bb (patch) | |
tree | 83b5da5e97958704edb0c41dc37632fe4bbfb0f5 /src/irc/irc.h | |
parent | 6963ca7b651071d071d96228b6d6d0a2ef85cb91 (diff) | |
download | weechat-c525b231e4a5c39d708fdf25b87c25f3d8a769bb.zip |
Added hostnames associeted to nicks (available for /ban completion)
Diffstat (limited to 'src/irc/irc.h')
-rw-r--r-- | src/irc/irc.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/irc/irc.h b/src/irc/irc.h index 87687146e..2b2b00959 100644 --- a/src/irc/irc.h +++ b/src/irc/irc.h @@ -69,6 +69,7 @@ typedef struct t_irc_nick t_irc_nick; struct t_irc_nick { char *nick; /* nickname */ + char *host; /* full hostname */ int flags; /* chanowner/chanadmin (unrealircd), */ /* op, halfop, voice, away */ int color; /* color for nickname in chat window */ @@ -359,7 +360,7 @@ extern char *channel_get_charset_encode (t_irc_server *, t_irc_channel *); extern char *channel_iconv_decode (t_irc_server *, t_irc_channel *, char *); extern char *channel_iconv_encode (t_irc_server *, t_irc_channel *, char *); extern void channel_remove_away (t_irc_channel *); -extern void channel_check_away (t_irc_server *, t_irc_channel *); +extern void channel_check_away (t_irc_server *, t_irc_channel *, int); extern void channel_set_away (t_irc_channel *, char *, int); extern int channel_create_dcc (t_irc_dcc *); extern void channel_remove_dcc (t_irc_dcc *); |