X-Git-Url: https://git.lttng.org/?a=blobdiff_plain;f=src%2Fcommon%2Fsessiond-comm%2Frelayd.h;h=cbeb5b5d6fe20535e398753c07b57d5e62c7febf;hb=40804255e7a6acd6fa76c41ee8e4e1cc2cefa49c;hp=25d09980e751a22f0933103d6420834981092eab;hpb=f86f6389a47137d2f5e8fc707916b6650fd1de00;p=lttng-tools.git diff --git a/src/common/sessiond-comm/relayd.h b/src/common/sessiond-comm/relayd.h index 25d09980e..cbeb5b5d6 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 @@ -84,6 +86,15 @@ struct lttcomm_relayd_add_stream_2_2 { uint64_t tracefile_count; } LTTNG_PACKED; +struct lttcomm_relayd_add_stream_2_11 { + uint32_t channel_name_len; + uint32_t pathname_len; + uint64_t tracefile_size; + uint64_t tracefile_count; + uint64_t trace_archive_id; + char names[]; +} LTTNG_PACKED; + /* * Answer from an add stream command. */ @@ -196,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;