X-Git-Url: https://git.lttng.org/?a=blobdiff_plain;f=src%2Fcommon%2Fsessiond-comm%2Frelayd.h;h=2ae94b3655ba262d57a71f9182f4f5ab2f64ceb5;hb=db1da059574b86008035b12968446863ab6de866;hp=b5948cc4a10b7a9d3d6838d7fd89ef4a63ed5d53;hpb=96b0ecff3ade3c7970d1cc5fb12a50a94c67ee67;p=lttng-tools.git diff --git a/src/common/sessiond-comm/relayd.h b/src/common/sessiond-comm/relayd.h index b5948cc4a..2ae94b365 100644 --- a/src/common/sessiond-comm/relayd.h +++ b/src/common/sessiond-comm/relayd.h @@ -27,6 +27,7 @@ #include #include #include +#include #define RELAYD_VERSION_COMM_MAJOR VERSION_MAJOR #define RELAYD_VERSION_COMM_MINOR VERSION_MINOR @@ -211,6 +212,9 @@ struct lttcomm_relayd_create_session_2_11 { lttng_uuid sessiond_uuid; /* Sessiond session id */ uint64_t session_id; + /* Session creation time, in seconds since UNIX Epoch. */ + uint64_t creation_time; + LTTNG_OPTIONAL_COMM(uint64_t) LTTNG_PACKED current_chunk_id; /* Contains the session_name and hostname */ char names[]; } LTTNG_PACKED; @@ -235,4 +239,21 @@ struct lttcomm_relayd_rotate_stream { char new_pathname[]; } LTTNG_PACKED; +struct lttcomm_relayd_create_trace_chunk { + uint64_t chunk_id; + /* Seconds since EPOCH. */ + uint64_t creation_timestamp; + /* Includes trailing NULL. */ + uint32_t override_name_length; + char override_name[]; +} LTTNG_PACKED; + +struct lttcomm_relayd_close_trace_chunk { + uint64_t chunk_id; + /* Seconds since EPOCH. */ + uint64_t close_timestamp; + /* enum lttng_trace_chunk_command_type */ + LTTNG_OPTIONAL_COMM(uint32_t) LTTNG_PACKED close_command; +} LTTNG_PACKED; + #endif /* _RELAYD_COMM */