aboutsummaryrefslogtreecommitdiff
path: root/weechat/net.h
diff options
context:
space:
mode:
Diffstat (limited to 'weechat/net.h')
-rw-r--r--weechat/net.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/weechat/net.h b/weechat/net.h
index 7e18f4c..335664c 100644
--- a/weechat/net.h
+++ b/weechat/net.h
@@ -15,6 +15,7 @@ enum net_response_type{
NET_MESSAGE,
NET_JOIN,
NET_INVITE,
+ NET_ONLINE,
};
struct net_history_item{
@@ -43,6 +44,10 @@ struct net_response{
i64 timestamp;
char *message;
};
+ struct {
+ char *username;
+ i64 num;
+ } online;
};
};