From 1ff80ddd1092ca7d4a4a81e1d45a8942692695ad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C5=99emysl=20Eric=20Janouch?= Date: Fri, 16 Oct 2020 16:56:24 +0200 Subject: [PATCH] degesch: stubplement TAGMSG --- degesch.c | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/degesch.c b/degesch.c index 39d1430..2af63b5 100644 --- a/degesch.c +++ b/degesch.c @@ -7114,6 +7114,14 @@ irc_handle_quit (struct server *s, const struct irc_message *msg) } } +static void +irc_handle_tagmsg (struct server *s, const struct irc_message *msg) +{ + // TODO: here we can process "typing" tags, once we find this useful + (void) s; + (void) msg; +} + static void irc_handle_topic (struct server *s, const struct irc_message *msg) { @@ -7158,6 +7166,7 @@ static struct irc_handler g_irc_handlers[] = { "PING", irc_handle_ping }, { "PRIVMSG", irc_handle_privmsg }, { "QUIT", irc_handle_quit }, + { "TAGMSG", irc_handle_tagmsg }, { "TOPIC", irc_handle_topic }, };