X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=blobdiff_plain;f=src%2Fcommon%2Fsessiond-comm%2Funix.h;fp=src%2Fcommon%2Fsessiond-comm%2Funix.h;h=0000000000000000000000000000000000000000;hp=24786b8fecbf2c2c805f4cb77d8cc7029ddad6f8;hb=2038dd6ce78bc856ece474626b7f039d19860bce;hpb=db4e2b3e3c9a578a456916f13506012061d919fd diff --git a/src/common/sessiond-comm/unix.h b/src/common/sessiond-comm/unix.h deleted file mode 100644 index 24786b8fe..000000000 --- a/src/common/sessiond-comm/unix.h +++ /dev/null @@ -1,63 +0,0 @@ -/* - * 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. - * - * 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 -#define _LTTCOMM_UNIX_H - -#include -#include - -#include -#include - -#include "sessiond-comm.h" - -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); -/* 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); - -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, 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_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 */