degesch: stubplement TAGMSG
This commit is contained in:
parent
12c8ace6a1
commit
1ff80ddd10
|
@ -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
|
static void
|
||||||
irc_handle_topic (struct server *s, const struct irc_message *msg)
|
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 },
|
{ "PING", irc_handle_ping },
|
||||||
{ "PRIVMSG", irc_handle_privmsg },
|
{ "PRIVMSG", irc_handle_privmsg },
|
||||||
{ "QUIT", irc_handle_quit },
|
{ "QUIT", irc_handle_quit },
|
||||||
|
{ "TAGMSG", irc_handle_tagmsg },
|
||||||
{ "TOPIC", irc_handle_topic },
|
{ "TOPIC", irc_handle_topic },
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue