X-Git-Url: https://git.lttng.org/?a=blobdiff_plain;f=src%2Fcommon%2Funix.h;h=820dff0b56893f86edeb1f40f8e289a8a0b6d6b3;hb=48a4000561343808724f7cb5fa8c131877489ccd;hp=886b40e73fb320536b2d91cab6fa73ce164947dd;hpb=c72435ad89dc397f89a30faea35274074fbb3047;p=lttng-tools.git diff --git a/src/common/unix.h b/src/common/unix.h index 886b40e73..820dff0b5 100644 --- a/src/common/unix.h +++ b/src/common/unix.h @@ -1,18 +1,8 @@ /* - * Copyright (C) 2012 - David Goulet + * Copyright (C) 2012 David Goulet * - * This program is free software; you can redistribute it and/or modify it - * under the terms of the GNU General Public License, version 2 only, as - * published by the Free Software Foundation. + * SPDX-License-Identifier: GPL-2.0-only * - * This program is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for - * more details. - * - * You should have received a copy of the GNU General Public License along with - * this program; if not, write to the Free Software Foundation, Inc., 51 - * Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #ifndef _LTTCOMM_UNIX_H @@ -23,43 +13,42 @@ #include #include +#include +#include -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. */ -LTTNG_HIDDEN -ssize_t lttcomm_send_fds_unix_sock(int sock, int *fds, size_t nb_fd); +ssize_t lttcomm_send_fds_unix_sock(int sock, const int *fds, size_t nb_fd); +ssize_t lttcomm_send_payload_view_fds_unix_sock(int sock, + struct lttng_payload_view *view); +ssize_t lttcomm_send_fds_unix_sock_non_block( + int sock, const int *fds, size_t nb_fd); +ssize_t lttcomm_send_payload_view_fds_unix_sock_non_block(int sock, + struct lttng_payload_view *view); + /* Recv a message accompanied by fd(s) from a unix socket */ -LTTNG_HIDDEN ssize_t lttcomm_recv_fds_unix_sock(int sock, int *fds, size_t nb_fd); +ssize_t lttcomm_recv_payload_fds_unix_sock(int sock, size_t nb_fd, + struct lttng_payload *payload); +ssize_t lttcomm_recv_fds_unix_sock_non_block(int sock, int *fds, size_t nb_fd); +ssize_t lttcomm_recv_payload_fds_unix_sock_non_block(int sock, size_t nb_fd, + struct lttng_payload *payload); -LTTNG_HIDDEN ssize_t lttcomm_recv_unix_sock(int sock, void *buf, size_t len); -LTTNG_HIDDEN ssize_t lttcomm_recv_unix_sock_non_block(int sock, void *buf, size_t len); -LTTNG_HIDDEN ssize_t lttcomm_send_unix_sock(int sock, const void *buf, size_t len); -LTTNG_HIDDEN ssize_t lttcomm_send_unix_sock_non_block(int sock, const 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_send_creds_unix_sock(int sock, const void *buf, size_t len); ssize_t lttcomm_recv_creds_unix_sock(int sock, void *buf, size_t len, lttng_sock_cred *creds); -LTTNG_HIDDEN int lttcomm_setsockopt_creds_unix_sock(int sock); #endif /* _LTTCOMM_UNIX_H */