aboutsummaryrefslogtreecommitdiffstats
path: root/irc.h
diff options
context:
space:
mode:
authordequis <dx@dxzone.com.ar>2015-11-08 05:16:15 -0300
committerdequis <dx@dxzone.com.ar>2015-11-08 05:16:15 -0300
commitd63f37c78c273bc345daf8c40ce99905212a84a0 (patch)
treeec4b502590fe2222c33846fe399d30fde7c68f65 /irc.h
parent37c965301304e0e83e29f19a5a5b5c7336412d8a (diff)
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.
Diffstat (limited to 'irc.h')
-rw-r--r--irc.h1
1 files changed, 1 insertions, 0 deletions
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;