Fix: remove unused session id map
[lttng-tools.git] / src / common / consumer.h
index e9927c7d46556150eab2520af8fdf01f72c77e6e..193533e926e12ea9b392686b24ff5559fccd8efb 100644 (file)
@@ -187,8 +187,9 @@ struct consumer_relayd_sock_pair {
        struct lttcomm_sock data_sock;
        struct lttng_ht_node_ulong node;
 
-       /* Session id on the relayd side for the sockets. */
-       uint64_t session_id;
+       /* Session id on both sides for the sockets. */
+       uint64_t relayd_session_id;
+       uint64_t sessiond_session_id;
 };
 
 /*
@@ -299,15 +300,6 @@ struct lttng_consumer_global_data {
        struct lttng_ht *stream_list_ht;
 };
 
-/*
- * Session id mapping structure storred in relayd_session_id_ht.
- */
-struct consumer_relayd_session_id {
-       uint64_t sessiond_id;
-       uint64_t relayd_id;
-       struct lttng_ht_node_ulong node;
-};
-
 /*
  * Init consumer data structures.
  */
This page took 0.02279 seconds and 4 git commands to generate.