From 687ec880201e4872a9abf72f5efe135164fc349b Mon Sep 17 00:00:00 2001 From: dequis Date: Sat, 12 Sep 2015 05:25:33 -0300 Subject: IRCv3 multi-prefix... but mostly just adding prefixes to WHO We can't actually have multiple prefixes internally, so the only thing missing for multi-prefix compliance is actually having the prefix in the WHO reply, which is a rfc1459 thing. Note to future self: check irc logs for the implementation I threw away. The one that actually handled multiple prefixes. I hope that's useful. --- irc_cap.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'irc_cap.c') diff --git a/irc_cap.c b/irc_cap.c index 3b139c94..79732409 100644 --- a/irc_cap.c +++ b/irc_cap.c @@ -37,8 +37,7 @@ typedef struct { } cap_info_t; static const cap_info_t supported_caps[] = { - {"foo", CAP_FOO}, - {"bar", CAP_BAR}, + {"multi-prefix", CAP_MULTI_PREFIX}, {NULL}, }; -- cgit v1.2.3