From d63f37c78c273bc345daf8c40ce99905212a84a0 Mon Sep 17 00:00:00 2001 From: dequis Date: Sun, 8 Nov 2015 05:16:15 -0300 Subject: IRCv3 extended-join capability Not very useful for the account features (and i won't implement account-notify), but it has a real name field, and it's *really* easy to implement. --- irc.h | 1 + 1 file changed, 1 insertion(+) (limited to 'irc.h') diff --git a/irc.h b/irc.h index 23d97433..b39c306c 100644 --- a/irc.h +++ b/irc.h @@ -69,6 +69,7 @@ typedef enum { typedef enum { CAP_SASL = (1 << 0), CAP_MULTI_PREFIX = (1 << 1), + CAP_EXTENDED_JOIN = (1 << 2), } irc_cap_flag_t; struct irc_user; -- cgit v1.2.3