Port: Use LTTNG_NAME_MAX instead of NAME_MAX
[lttng-tools.git] / src / common / sessiond-comm / relayd.h
index 0a8f53b4ac7d40c46215637403edda5daa5c1551..1152d28e907676aa6e06ed046ae62c5e5da977df 100644 (file)
 
 #include <lttng/lttng.h>
 #include <common/defaults.h>
 
 #include <lttng/lttng.h>
 #include <common/defaults.h>
+#include <common/index/ctf-index.h>
+#include <config.h>
 
 
-#define RELAYD_VERSION_COMM_MAJOR             2
-#define RELAYD_VERSION_COMM_MINOR             1
+#define RELAYD_VERSION_COMM_MAJOR             VERSION_MAJOR
+#define RELAYD_VERSION_COMM_MINOR             VERSION_MINOR
 
 /*
  * lttng-relayd communication header.
 
 /*
  * lttng-relayd communication header.
@@ -69,6 +71,17 @@ struct lttcomm_relayd_add_stream {
        char pathname[PATH_MAX];
 } LTTNG_PACKED;
 
        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.
  */
 /*
  * Answer from an add stream command.
  */
@@ -137,4 +150,28 @@ struct lttcomm_relayd_quiescent_control {
        uint64_t stream_id;
 } LTTNG_PACKED;
 
        uint64_t stream_id;
 } LTTNG_PACKED;
 
+/*
+ * Index data.
+ */
+struct lttcomm_relayd_index {
+       uint64_t relay_stream_id;
+       uint64_t net_seq_num;
+       uint64_t packet_size;
+       uint64_t content_size;
+       uint64_t timestamp_begin;
+       uint64_t timestamp_end;
+       uint64_t events_discarded;
+       uint64_t stream_id;
+} LTTNG_PACKED;
+
+/*
+ * Create session in 2.4 adds additionnal parameters for live reading.
+ */
+struct lttcomm_relayd_create_session_2_4 {
+       char session_name[LTTNG_NAME_MAX];
+       char hostname[HOST_NAME_MAX];
+       uint32_t live_timer;
+       uint32_t snapshot;
+} LTTNG_PACKED;
+
 #endif /* _RELAYD_COMM */
 #endif /* _RELAYD_COMM */
This page took 0.024728 seconds and 5 git commands to generate.