From 8aa6dd86f6c7036f6dbc065efb63e1b75e5cf0a8 Mon Sep 17 00:00:00 2001 From: "C. McEnroe" Date: Fri, 14 Feb 2020 21:10:40 -0500 Subject: Add /away --- handle.c | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'handle.c') diff --git a/handle.c b/handle.c index 2e4f56d..6dffa17 100644 --- a/handle.c +++ b/handle.c @@ -549,6 +549,13 @@ static void handleReplyAway(struct Message *msg) { ); } +static void handleReplyNowAway(struct Message *msg) { + require(msg, false, 2); + if (!replies.away) return; + uiFormat(Network, Warm, tagTime(msg), "%s", msg->params[1]); + replies.away--; +} + static bool isAction(struct Message *msg) { if (strncmp(msg->params[1], "\1ACTION ", 8)) return false; msg->params[1] += 8; @@ -675,6 +682,8 @@ static const struct Handler { { "005", handleReplyISupport }, { "276", handleReplyWhoisGeneric }, { "301", handleReplyAway }, + { "305", handleReplyNowAway }, + { "306", handleReplyNowAway }, { "307", handleReplyWhoisGeneric }, { "311", handleReplyWhoisUser }, { "312", handleReplyWhoisServer }, -- cgit 1.4.1