diff options
author | Patrick Griffis <tingping@tingping.se> | 2016-01-29 14:02:40 -0500 |
---|---|---|
committer | Patrick Griffis <tingping@tingping.se> | 2016-01-29 15:28:33 -0500 |
commit | 8da205b0a86c94fabb543ad7f8b37feff2b27842 (patch) | |
tree | 732ed82812719bae467cef817c3881beb9d0858f /src/common/proto-irc.c | |
parent | 981d55e84c417095c0f686a6e22ba83ef9aa4b4e (diff) |
Add support for chghost
Diffstat (limited to 'src/common/proto-irc.c')
-rw-r--r-- | src/common/proto-irc.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/common/proto-irc.c b/src/common/proto-irc.c index 4174e182..180a3e43 100644 --- a/src/common/proto-irc.c +++ b/src/common/proto-irc.c @@ -1147,7 +1147,12 @@ process_named_msg (session *sess, char *type, char *word[], char *word_eol[], case WORDL('A', 'U', 'T', 'H'): inbound_sasl_authenticate (sess->server, word_eol[3]); return; - + + case WORDL('C', 'H', 'G', 'H'): + inbound_user_info (sess, NULL, word[3], word[4], NULL, nick, NULL, + NULL, 0xff, tags_data); + return; + case WORDL('I','N','V','I'): if (ignore_check (word[1], IG_INVI)) return; |