X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=blobdiff_plain;f=src%2Fcommon%2Fsessiond-comm%2Funix.h;h=7eba1021b00d121b2ea8cd5ccdaf4493f02d56ad;hp=6859cbabad2c1f1b1a3cff9f8128a3f9f09682d2;hb=8d9eb6d8a3b60f0b20abe470ccede407c44cf6cb;hpb=8684af09caa3ca7014048753361c23d00f8e3be6 diff --git a/src/common/sessiond-comm/unix.h b/src/common/sessiond-comm/unix.h index 6859cbaba..7eba1021b 100644 --- a/src/common/sessiond-comm/unix.h +++ b/src/common/sessiond-comm/unix.h @@ -23,28 +23,42 @@ #include #include +#include #include "sessiond-comm.h" -extern int lttcomm_create_unix_sock(const char *pathname); -extern int lttcomm_create_anon_unix_socketpair(int *fds); -extern int lttcomm_connect_unix_sock(const char *pathname); -extern int lttcomm_accept_unix_sock(int sock); -extern int lttcomm_listen_unix_sock(int sock); -extern int lttcomm_close_unix_sock(int sock); +LTTNG_HIDDEN +int lttcomm_create_unix_sock(const char *pathname); +LTTNG_HIDDEN +int lttcomm_create_anon_unix_socketpair(int *fds); +LTTNG_HIDDEN +int lttcomm_connect_unix_sock(const char *pathname); +LTTNG_HIDDEN +int lttcomm_accept_unix_sock(int sock); +LTTNG_HIDDEN +int lttcomm_listen_unix_sock(int sock); +LTTNG_HIDDEN +int lttcomm_close_unix_sock(int sock); /* Send a message accompanied by fd(s) over a unix socket. */ -extern ssize_t lttcomm_send_fds_unix_sock(int sock, int *fds, size_t nb_fd); +LTTNG_HIDDEN +ssize_t lttcomm_send_fds_unix_sock(int sock, int *fds, size_t nb_fd); /* Recv a message accompanied by fd(s) from a unix socket */ -extern ssize_t lttcomm_recv_fds_unix_sock(int sock, int *fds, size_t nb_fd); +LTTNG_HIDDEN +ssize_t lttcomm_recv_fds_unix_sock(int sock, int *fds, size_t nb_fd); -extern ssize_t lttcomm_recv_unix_sock(int sock, void *buf, size_t len); -extern ssize_t lttcomm_send_unix_sock(int sock, void *buf, size_t len); +LTTNG_HIDDEN +ssize_t lttcomm_recv_unix_sock(int sock, void *buf, size_t len); +LTTNG_HIDDEN +ssize_t lttcomm_send_unix_sock(int sock, void *buf, size_t len); -extern ssize_t lttcomm_send_creds_unix_sock(int sock, void *buf, size_t len); -extern ssize_t lttcomm_recv_creds_unix_sock(int sock, void *buf, size_t len, +LTTNG_HIDDEN +ssize_t lttcomm_send_creds_unix_sock(int sock, void *buf, size_t len); +LTTNG_HIDDEN +ssize_t lttcomm_recv_creds_unix_sock(int sock, void *buf, size_t len, lttng_sock_cred *creds); -extern int lttcomm_setsockopt_creds_unix_sock(int sock); +LTTNG_HIDDEN +int lttcomm_setsockopt_creds_unix_sock(int sock); #endif /* _LTTCOMM_UNIX_H */