Add the relayd create session command
[lttng-tools.git] / src / bin / lttng-relayd / lttng-relayd.h
index bec13496ca26ab5944853bb0dacadebeb8b2436f..2a442b0952cbb4b14870434a78f0f0aa3253c105 100644 (file)
@@ -42,7 +42,6 @@ enum connection_type {
 struct relay_session {
        uint64_t id;
        struct lttcomm_sock *sock;
 struct relay_session {
        uint64_t id;
        struct lttcomm_sock *sock;
-       unsigned int version_check_done:1;
 };
 
 /*
 };
 
 /*
@@ -50,11 +49,15 @@ struct relay_session {
  */
 struct relay_stream {
        uint64_t stream_handle;
  */
 struct relay_stream {
        uint64_t stream_handle;
-       uint64_t seq;
+       uint64_t prev_seq;      /* previous data sequence number encountered */
        struct lttng_ht_node_ulong stream_n;
        struct relay_session *session;
        struct rcu_head rcu_node;
        int fd;
        struct lttng_ht_node_ulong stream_n;
        struct relay_session *session;
        struct rcu_head rcu_node;
        int fd;
+
+       /* Information telling us when to close the stream  */
+       unsigned int close_flag:1;
+       uint64_t last_net_seq_num;
 };
 
 /*
 };
 
 /*
@@ -68,6 +71,7 @@ struct relay_command {
        struct lttng_ht_node_ulong sock_n;
        struct rcu_head rcu_node;
        enum connection_type type;
        struct lttng_ht_node_ulong sock_n;
        struct rcu_head rcu_node;
        enum connection_type type;
+       unsigned int version_check_done:1;
 };
 
 #endif /* LTTNG_RELAYD_H */
 };
 
 #endif /* LTTNG_RELAYD_H */
This page took 0.02334 seconds and 4 git commands to generate.