diff options
author | June McEnroe <june@causal.agency> | 2020-02-26 03:15:14 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2020-02-26 03:15:14 -0500 |
commit | fe0d18a3a9fe27d56f8551c5fe91aeca5e1b415b (patch) | |
tree | 0449eb94db7345c7356e4b4a218a2e92e80787bc /client.c | |
parent | Support batch (diff) | |
download | pounce-fe0d18a3a9fe27d56f8551c5fe91aeca5e1b415b.tar.gz pounce-fe0d18a3a9fe27d56f8551c5fe91aeca5e1b415b.zip |
Support labeled-response
Diffstat (limited to '')
-rw-r--r-- | client.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/client.c b/client.c index d890cb9..61cd7d0 100644 --- a/client.c +++ b/client.c @@ -437,6 +437,10 @@ static const char *filterInviteNotify(const char *line) { return (wordcmp(line, 1, stateNick()) ? NULL : line); } +static const char *filterLabeledResponse(const char *line) { + return (wordcmp(line, 0, "ACK") ? line : NULL); +} + static const char *filterMessageTags(const char *line) { return (wordcmp(line, 0, "TAGMSG") ? line : NULL); } @@ -483,6 +487,7 @@ static Filter *Filters[] = { [CapChghostBit] = filterChghost, [CapExtendedJoinBit] = filterExtendedJoin, [CapInviteNotifyBit] = filterInviteNotify, + [CapLabeledResponseBit] = filterLabeledResponse, [CapMessageTagsBit] = filterMessageTags, [CapMultiPrefixBit] = filterMultiPrefix, [CapUserhostInNamesBit] = filterUserhostInNames, |