X-Git-Url: http://git.efficios.com/?p=lttng-tools.git;a=blobdiff_plain;f=src%2Fcommon%2Fsessiond-comm%2Frelayd.h;h=1152d28e907676aa6e06ed046ae62c5e5da977df;hp=ed094ac9d8d73de7936b7921508457efe202289e;hb=36d2e35df61339e4394e84ad9790b984d259e0f0;hpb=6947778efd60badf06cec2bd5c39d7f96f5ba7ad diff --git a/src/common/sessiond-comm/relayd.h b/src/common/sessiond-comm/relayd.h index ed094ac9d..1152d28e9 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[LTTNG_NAME_MAX]; + char hostname[HOST_NAME_MAX]; + uint32_t live_timer; + uint32_t snapshot; +} LTTNG_PACKED; + #endif /* _RELAYD_COMM */