Cleanup: remove duplicated implementation of rculfhash
[lttng-tools.git] / src / common / sessiond-comm / inet6.h
CommitLineData
6364a07a
DG
1/*
2 * Copyright (C) 2012 - David Goulet <dgoulet@efficios.com>
3 *
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms of the GNU General Public License, version 2 only, as
6 * published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful, but WITHOUT
9 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
11 * more details.
12 *
13 * You should have received a copy of the GNU General Public License along with
14 * this program; if not, write to the Free Software Foundation, Inc., 51
15 * Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
16 */
17
18#ifndef _LTTCOMM_INET6_H
19#define _LTTCOMM_INET6_H
20
21#define _GNU_SOURCE
22#include <limits.h>
23
24#include "sessiond-comm.h"
25
26/* Stub */
27struct lttcomm_sock;
28
29/* Net family callback */
30extern int lttcomm_create_inet6_sock(struct lttcomm_sock *sock, int type,
31 int proto);
32
33extern struct lttcomm_sock *lttcomm_accept_inet6_sock(
34 struct lttcomm_sock *sock);
35extern int lttcomm_bind_inet6_sock(struct lttcomm_sock *sock);
36extern int lttcomm_close_inet6_sock(struct lttcomm_sock *sock);
37extern int lttcomm_connect_inet6_sock(struct lttcomm_sock *sock);
38extern int lttcomm_listen_inet6_sock(struct lttcomm_sock *sock, int backlog);
39
40extern ssize_t lttcomm_recvmsg_inet6_sock(struct lttcomm_sock *sock, void *buf,
41 size_t len, int flags);
42extern ssize_t lttcomm_sendmsg_inet6_sock(struct lttcomm_sock *sock, void *buf,
43 size_t len, int flags);
44
45#endif /* _LTTCOMM_INET6_H */
This page took 0.034383 seconds and 4 git commands to generate.