Use dynamic payload for the add stream realyd command
[lttng-tools.git] / src / common / sessiond-comm / relayd.h
index 306e2e4dd7bcd8e25c6f4caf5b0440c07e952105..1a58d5989e6358b68fbfd50f15d8e750a1bb8891 100644 (file)
@@ -84,6 +84,14 @@ struct lttcomm_relayd_add_stream_2_2 {
        uint64_t tracefile_count;
 } LTTNG_PACKED;
 
+struct lttcomm_relayd_add_stream_2_11 {
+       uint32_t channel_name_len;
+       uint32_t pathname_len;
+       uint64_t tracefile_size;
+       uint64_t tracefile_count;
+       char names[];
+} LTTNG_PACKED;
+
 /*
  * Answer from an add stream command.
  */
@@ -191,6 +199,15 @@ struct lttcomm_relayd_create_session_2_4 {
        uint32_t snapshot;
 } LTTNG_PACKED;
 
+struct lttcomm_relayd_create_session_2_11 {
+       uint32_t session_name_len;
+       uint32_t hostname_len;
+       uint32_t live_timer;
+       uint8_t snapshot;
+       /* Contains the session_name and hostname */
+       char names[];
+} LTTNG_PACKED;
+
 /*
  * Used to ask the relay to reset the metadata trace file (regeneration).
  * Send the new version of the metadata (starts at 0).
This page took 0.036996 seconds and 4 git commands to generate.