Implement support for the IRCv3 SETNAME specification. (#2571)

This commit is contained in:
Sadie Powell
2021-05-23 19:12:10 +01:00
committed by GitHub
parent f0554b27df
commit e4fd69e3d4
3 changed files with 10 additions and 1 deletions

View File

@@ -1157,6 +1157,11 @@ process_named_msg (session *sess, char *type, char *word[], char *word_eol[],
NULL, 0xff, tags_data);
return;
case WORDL('S', 'E', 'T', 'N'):
inbound_user_info (sess, NULL, NULL, NULL, NULL, nick, STRIP_COLON(word, word_eol, 3),
NULL, 0xff, tags_data);
return;
case WORDL('I','N','V','I'):
if (ignore_check (word[1], IG_INVI))
return;