X-Git-Url: https://git.lttng.org/?a=blobdiff_plain;f=src%2Fcommon%2Frelayd%2Frelayd.h;h=fd0acfb3583d1c4b10b80f0e45649ca00271a7b3;hb=ffe600149a7608221985751e1bf293234bf2545c;hp=29903cfae679e6bdb76017b4f23e7e2cc41d17a6;hpb=c8f59ee5fc11492ef472dc5cfd2fd2c4926b1787;p=lttng-tools.git diff --git a/src/common/relayd/relayd.h b/src/common/relayd/relayd.h index 29903cfae..fd0acfb35 100644 --- a/src/common/relayd/relayd.h +++ b/src/common/relayd/relayd.h @@ -25,10 +25,7 @@ int relayd_connect(struct lttcomm_sock *sock); int relayd_close(struct lttcomm_sock *sock); -#if 0 -int relayd_create_session(struct lttcomm_sock *sock, const char *hostname, - const char *session_name); -#endif +int relayd_create_session(struct lttcomm_sock *sock, uint64_t *session_id); int relayd_add_stream(struct lttcomm_sock *sock, const char *channel_name, const char *pathname, uint64_t *stream_id); int relayd_send_close_stream(struct lttcomm_sock *sock, uint64_t stream_id, @@ -39,8 +36,12 @@ int relayd_start_data(struct lttcomm_sock *sock); int relayd_send_metadata(struct lttcomm_sock *sock, size_t len); int relayd_send_data_hdr(struct lttcomm_sock *sock, struct lttcomm_relayd_data_hdr *hdr, size_t size); -int relayd_data_available(struct lttcomm_sock *sock, uint64_t stream_id, +int relayd_data_pending(struct lttcomm_sock *sock, uint64_t stream_id, uint64_t last_net_seq_num); -int relayd_quiescent_control(struct lttcomm_sock *sock); +int relayd_quiescent_control(struct lttcomm_sock *sock, + uint64_t metadata_stream_id); +int relayd_begin_data_pending(struct lttcomm_sock *sock, uint64_t id); +int relayd_end_data_pending(struct lttcomm_sock *sock, uint64_t id, + unsigned int *is_data_inflight); #endif /* _RELAYD_H */