build: export major/minor/patchlevel numbers
[lttng-tools.git] / src / common / sessiond-comm / relayd.h
index 7a89c3127920e3eb7db12a187446ea3a9f3eccaa..aa99248fb45de4bf920f5571a522d4a357f71edd 100644 (file)
@@ -28,7 +28,7 @@
 #include <common/defaults.h>
 
 #define RELAYD_VERSION_COMM_MAJOR             2
-#define RELAYD_VERSION_COMM_MINOR             1
+#define RELAYD_VERSION_COMM_MINOR             2
 
 /*
  * lttng-relayd communication header.
@@ -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.024835 seconds and 4 git commands to generate.