mirror of
https://github.com/ZoiteChat/zoitechat.git
synced 2026-03-13 17:20:21 +00:00
First step towards message tags extension support
(see http://ircv3.atheme.org/specification/message-tags-3.2). In particular this commit implements a (very) dummy implementation sketch of the server-time extension (see http://ircv3.atheme.org/specification/message-tags-3.2 and #499).
This commit is contained in:
@@ -17,6 +17,8 @@
|
||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
||||
*/
|
||||
|
||||
#include "proto-irc.h"
|
||||
|
||||
#ifndef HEXCHAT_INBOUND_H
|
||||
#define HEXCHAT_INBOUND_H
|
||||
|
||||
@@ -46,7 +48,8 @@ void inbound_away (server *serv, char *nick, char *msg);
|
||||
void inbound_away_notify (server *serv, char *nick, char *reason);
|
||||
void inbound_login_start (session *sess, char *nick, char *servname);
|
||||
void inbound_login_end (session *sess, char *text);
|
||||
void inbound_chanmsg (server *serv, session *sess, char *chan, char *from, char *text, char fromme, int id);
|
||||
void inbound_chanmsg (server *serv, session *sess, char *chan, char *from, char *text, char fromme, int id,
|
||||
const message_tags_data const *tags_data);
|
||||
void clear_channel (session *sess);
|
||||
void set_topic (session *sess, char *topic, char *stripped_topic);
|
||||
void inbound_privmsg (server *serv, char *from, char *ip, char *text, int id);
|
||||
|
||||
Reference in New Issue
Block a user