X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=blobdiff_plain;f=src%2Fcommon%2Fsessiond-comm%2Frelayd.h;h=ff56d3a26fe1aff3bec9b678b020cea0da4c6de7;hp=ed094ac9d8d73de7936b7921508457efe202289e;hb=50adc26400482c07210afcda8ef1d3322f75871d;hpb=6947778efd60badf06cec2bd5c39d7f96f5ba7ad diff --git a/src/common/sessiond-comm/relayd.h b/src/common/sessiond-comm/relayd.h index ed094ac9d..ff56d3a26 100644 --- a/src/common/sessiond-comm/relayd.h +++ b/src/common/sessiond-comm/relayd.h @@ -26,6 +26,7 @@ #include #include +#include #include #define RELAYD_VERSION_COMM_MAJOR VERSION_MAJOR @@ -149,4 +150,28 @@ struct lttcomm_relayd_quiescent_control { 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[NAME_MAX]; + char hostname[HOST_NAME_MAX]; + uint32_t live_timer; + uint32_t snapshot; +} LTTNG_PACKED; + #endif /* _RELAYD_COMM */