X-Git-Url: https://git.lttng.org/?a=blobdiff_plain;f=src%2Fcommon%2Fsessiond-comm%2Frelayd.h;h=7bc7a12173236b4609322291ec3d5af89038853b;hb=8b3bd7a32e514aae56e718491a10f582b03140c3;hp=5be2328b9794676462f1c0cd96a588a0e97fc406;hpb=c8f59ee5fc11492ef472dc5cfd2fd2c4926b1787;p=lttng-tools.git diff --git a/src/common/sessiond-comm/relayd.h b/src/common/sessiond-comm/relayd.h index 5be2328b9..7bc7a1217 100644 --- a/src/common/sessiond-comm/relayd.h +++ b/src/common/sessiond-comm/relayd.h @@ -25,6 +25,7 @@ #include #include +#include #define RELAYD_VERSION_COMM_MAJOR 2 #define RELAYD_VERSION_COMM_MINOR 1 @@ -56,7 +57,7 @@ struct lttcomm_relayd_data_hdr { * Used to add a stream on the relay daemon. */ struct lttcomm_relayd_add_stream { - char channel_name[LTTNG_SYMBOL_NAME_LEN]; + char channel_name[DEFAULT_STREAM_NAME_LEN]; char pathname[PATH_MAX]; } __attribute__ ((__packed__)); @@ -108,10 +109,10 @@ struct lttcomm_relayd_close_stream { } __attribute__ ((__packed__)); /* - * Used to test if for a given stream id the data is available on the relayd - * side for reading. + * Used to test if for a given stream id the data is pending on the relayd side + * for reading. */ -struct lttcomm_relayd_data_available { +struct lttcomm_relayd_data_pending { uint64_t stream_id; uint64_t last_net_seq_num; /* Sequence number of the last packet */ } __attribute__ ((__packed__));