Fix: lttng-ctl: erroneous uses of LTTNG_PACKED
[lttng-tools.git] / src / common / sessiond-comm / inet6.h
1 /*
2 * Copyright (C) 2012 David Goulet <dgoulet@efficios.com>
3 *
4 * SPDX-License-Identifier: GPL-2.0-only
5 *
6 */
7
8 #ifndef _LTTCOMM_INET6_H
9 #define _LTTCOMM_INET6_H
10
11 #include <limits.h>
12
13 #include "sessiond-comm.h"
14
15 /* Stub */
16 struct lttcomm_sock;
17
18 /* Net family callback */
19 extern int lttcomm_create_inet6_sock(struct lttcomm_sock *sock, int type,
20 int proto);
21
22 extern struct lttcomm_sock *lttcomm_accept_inet6_sock(
23 struct lttcomm_sock *sock);
24 extern int lttcomm_bind_inet6_sock(struct lttcomm_sock *sock);
25 extern int lttcomm_close_inet6_sock(struct lttcomm_sock *sock);
26 extern int lttcomm_connect_inet6_sock(struct lttcomm_sock *sock);
27 extern int lttcomm_listen_inet6_sock(struct lttcomm_sock *sock, int backlog);
28
29 extern ssize_t lttcomm_recvmsg_inet6_sock(struct lttcomm_sock *sock, void *buf,
30 size_t len, int flags);
31 extern ssize_t lttcomm_sendmsg_inet6_sock(struct lttcomm_sock *sock,
32 const void *buf, size_t len, int flags);
33
34 #endif /* _LTTCOMM_INET6_H */
This page took 0.029209 seconds and 4 git commands to generate.