diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2011-09-27 21:49:24 +0200 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2011-09-27 21:49:24 +0200 |
commit | 677a1b26b263120cd90e0cfd879949a9a5d7c0be (patch) | |
tree | 9e864e5f0199494bd7edbb5f35ece5612c95af4f | |
parent | d0f41efeb7753caa1d7408ca71167ceaed320da5 (diff) | |
download | weechat-677a1b26b263120cd90e0cfd879949a9a5d7c0be.zip |
irc: add missing messages for whois: 223, 264
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | src/plugins/irc/irc-protocol.c | 2 |
2 files changed, 3 insertions, 0 deletions
@@ -86,6 +86,7 @@ Version 0.3.6 (under dev!) description for option when function is called) * scripts: fix crash with scripts not auto-loaded having a buffer opened after /upgrade (input/close callbacks for buffer not set properly) +* irc: add missing messages for whois: 223, 264, 343 * irc: use high priority queue for sending modes and wallchops messages * irc: allow reason for command /disconnect * irc: allow server name for commands /die and /restart diff --git a/src/plugins/irc/irc-protocol.c b/src/plugins/irc/irc-protocol.c index fb0626ed5..8fc082e8d 100644 --- a/src/plugins/irc/irc-protocol.c +++ b/src/plugins/irc/irc-protocol.c @@ -4210,6 +4210,8 @@ irc_protocol_recv_command (struct t_irc_server *server, { "001", /* a server message */ 1, &irc_protocol_cb_001 }, { "005", /* a server message */ 1, &irc_protocol_cb_005 }, { "221", /* user mode string */ 1, &irc_protocol_cb_221 }, + { "223", /* whois (charset is) */ 1, &irc_protocol_cb_whois_nick_msg }, + { "264", /* whois (is using encrypted connection) */ 1, &irc_protocol_cb_whois_nick_msg }, { "275", /* whois (secure connection) */ 1, &irc_protocol_cb_whois_nick_msg }, { "276", /* whois (has client certificate fingerprint) */ 1, &irc_protocol_cb_whois_nick_msg }, { "301", /* away message */ 1, &irc_protocol_cb_301 }, |