summary refs log tree commit diff stats
path: root/src/common/proto-irc.c
diff options
context:
space:
mode:
authorPatrick Griffis <tingping@tingping.se>2016-01-29 14:02:40 -0500
committerPatrick Griffis <tingping@tingping.se>2016-01-29 15:28:33 -0500
commit8da205b0a86c94fabb543ad7f8b37feff2b27842 (patch)
tree732ed82812719bae467cef817c3881beb9d0858f /src/common/proto-irc.c
parent981d55e84c417095c0f686a6e22ba83ef9aa4b4e (diff)
Add support for chghost
Diffstat (limited to 'src/common/proto-irc.c')
-rw-r--r--src/common/proto-irc.c7
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;