X-Git-Url: https://git.lttng.org/?a=blobdiff_plain;f=src%2Fcommon%2Fsessiond-comm%2Frelayd.h;h=b5948cc4a10b7a9d3d6838d7fd89ef4a63ed5d53;hb=96b0ecff3ade3c7970d1cc5fb12a50a94c67ee67;hp=b09dd138dfb4777f46b533a694e21f19f2e93c8e;hpb=0b50e4b3fb9859af7072adcca784684834e5f8d1;p=lttng-tools.git diff --git a/src/common/sessiond-comm/relayd.h b/src/common/sessiond-comm/relayd.h index b09dd138d..b5948cc4a 100644 --- a/src/common/sessiond-comm/relayd.h +++ b/src/common/sessiond-comm/relayd.h @@ -25,6 +25,8 @@ #include #include #include +#include +#include #define RELAYD_VERSION_COMM_MAJOR VERSION_MAJOR #define RELAYD_VERSION_COMM_MINOR VERSION_MINOR @@ -205,6 +207,10 @@ struct lttcomm_relayd_create_session_2_11 { uint32_t hostname_len; uint32_t live_timer; uint8_t snapshot; + /* Sessiond instance UUID */ + lttng_uuid sessiond_uuid; + /* Sessiond session id */ + uint64_t session_id; /* Contains the session_name and hostname */ char names[]; } LTTNG_PACKED; @@ -229,27 +235,4 @@ struct lttcomm_relayd_rotate_stream { char new_pathname[]; } LTTNG_PACKED; -struct lttcomm_relayd_rotate_rename { - uint32_t old_path_length; - uint32_t new_path_length; - /* Concatenation of the old and new paths, separated by \0. */ - char paths[]; -} LTTNG_PACKED; - -struct lttcomm_relayd_rotate_pending { - uint64_t chunk_id; -} LTTNG_PACKED; - -struct lttcomm_relayd_rotate_pending_reply { - struct lttcomm_relayd_generic_reply generic; - /* Valid values are [0, 1]. */ - uint8_t is_pending; -} LTTNG_PACKED; - -struct lttcomm_relayd_mkdir { - /* Includes trailing NULL */ - uint32_t length; - char path[]; -} LTTNG_PACKED; - #endif /* _RELAYD_COMM */