diff options
author | Simmo Saan <simmo.saan@gmail.com> | 2018-03-24 17:01:50 +0100 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2018-03-24 17:01:50 +0100 |
commit | d77e1ea49950f1f537194368cc4d003bb8667d41 (patch) | |
tree | 62c4cddaa9af9f59417e3d262b05b10e012d13f8 /src/plugins/irc/irc-channel.h | |
parent | b2f971d4b046ae49b01f926f5617a0542c21d5d3 (diff) | |
download | weechat-d77e1ea49950f1f537194368cc4d003bb8667d41.zip |
irc: add indexed ban list, add completion for /unban and /unquiet (closes #597, task #11374, task #10876)
Diffstat (limited to 'src/plugins/irc/irc-channel.h')
-rw-r--r-- | src/plugins/irc/irc-channel.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/plugins/irc/irc-channel.h b/src/plugins/irc/irc-channel.h index 6326edf61..7434acff4 100644 --- a/src/plugins/irc/irc-channel.h +++ b/src/plugins/irc/irc-channel.h @@ -32,6 +32,7 @@ #define IRC_CHANNEL_NICKS_SPEAKING_LIMIT 128 struct t_irc_server; +struct t_irc_modelist; struct t_irc_channel_speaking { @@ -71,6 +72,8 @@ struct t_irc_channel struct t_irc_channel_speaking *nicks_speaking_time; /* for smart filter */ /* of join/part/quit messages */ struct t_irc_channel_speaking *last_nick_speaking_time; + struct t_irc_modelist *modelists; /* modelists in the channel */ + struct t_irc_modelist *last_modelist; /* last modelist in the channel */ struct t_hashtable *join_smart_filtered; /* smart filtered joins */ struct t_gui_buffer *buffer; /* buffer allocated for channel */ char *buffer_as_string; /* used to return buffer info */ |