1
0
mirror of https://github.com/weechat/weechat.git synced 2026-07-07 02:03:13 +02:00

irc: add IRC message tags in messages displayed (closes #1680)

This commit is contained in:
Sébastien Helleu
2021-12-30 21:11:22 +01:00
parent 5c6fc8c4bd
commit b66298d369
9 changed files with 305 additions and 160 deletions
+5 -2
View File
@@ -93,8 +93,11 @@ struct t_irc_protocol_msg
t_irc_recv_func *recv_function; /* function called when msg is received */
};
extern const char *irc_protocol_tags (const char *command, const char *tags,
const char *nick, const char *address);
extern const char *irc_protocol_tags (const char *command,
struct t_hashtable *irc_msg_tags,
const char *extra_tags,
const char *nick,
const char *address);
extern time_t irc_protocol_parse_time (const char *time);
extern void irc_protocol_recv_command (struct t_irc_server *server,
const char *irc_message,