Fix: Hide sessiond-comm functions
[lttng-tools.git] / src / common / sessiond-comm / unix.h
index 6859cbabad2c1f1b1a3cff9f8128a3f9f09682d2..7eba1021b00d121b2ea8cd5ccdaf4493f02d56ad 100644 (file)
 #include <sys/un.h>
 
 #include <common/compat/socket.h>
+#include <common/macros.h>
 
 #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 */
This page took 0.023367 seconds and 4 git commands to generate.