Relayd add_stream command handle tracefile rotation
[lttng-tools.git] / src / common / sessiond-comm / relayd.h
index 03460de38566cdb7ec42b13a6c0e4d2a55f44f1d..624d1b27d9cd779e5fac2628409401c3b2898241 100644 (file)
@@ -37,7 +37,7 @@ struct lttcomm_relayd_hdr {
        /* Circuit ID not used for now so always ignored */
        uint64_t circuit_id;
        uint64_t data_size;             /* data size following this header */
-       uint32_t cmd;                   /* enum lttcomm_sessiond_command */
+       uint32_t cmd;                   /* enum lttcomm_relayd_command */
        uint32_t cmd_version;   /* command version */
 } LTTNG_PACKED;
 
@@ -69,6 +69,17 @@ struct lttcomm_relayd_add_stream {
        char pathname[PATH_MAX];
 } LTTNG_PACKED;
 
+/*
+ * Used to add a stream on the relay daemon.
+ * Protocol version 2.2
+ */
+struct lttcomm_relayd_add_stream_2_2 {
+       char channel_name[DEFAULT_STREAM_NAME_LEN];
+       char pathname[PATH_MAX];
+       uint64_t tracefile_size;
+       uint64_t tracefile_count;
+} LTTNG_PACKED;
+
 /*
  * Answer from an add stream command.
  */
@@ -133,4 +144,8 @@ struct lttcomm_relayd_end_data_pending {
        uint64_t session_id;
 } LTTNG_PACKED;
 
+struct lttcomm_relayd_quiescent_control {
+       uint64_t stream_id;
+} LTTNG_PACKED;
+
 #endif /* _RELAYD_COMM */
This page took 0.023778 seconds and 4 git commands to generate.