summaryrefslogtreecommitdiffstats
path: root/kernel/tests/include/lapi/socket.h
blob: d6389e504146d8fa09434c7b52e7e0f7462a9faf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
// SPDX-License-Identifier: GPL-2.0-or-later
/*
* Copyright (c) 2016 Fujitsu Ltd.
* Author: Xiao Yang <yangx.jy@cn.fujitsu.com>
*/

#ifndef __LAPI_SOCKET_H__
#define __LAPI_SOCKET_H__

#include "config.h"
#include <sys/socket.h>

#ifndef MSG_ZEROCOPY
# define MSG_ZEROCOPY	0x4000000 /* Use user data in kernel path */
#endif

#ifndef MSG_FASTOPEN
# define MSG_FASTOPEN	0x20000000 /* Send data in TCP SYN */
#endif

#ifndef SO_REUSEPORT
# define SO_REUSEPORT	15
#endif

#ifndef SO_BUSY_POLL
# define SO_BUSY_POLL	46
#endif

#ifndef SO_ATTACH_BPF
# define SO_ATTACH_BPF  50
#endif

#ifndef SO_ZEROCOPY
# define SO_ZEROCOPY	60
#endif

#ifndef SOCK_DCCP
# define SOCK_DCCP		6
#endif

#ifndef SOCK_CLOEXEC
# define SOCK_CLOEXEC 02000000
#endif

#ifndef AF_ALG
# define AF_ALG		38
#endif

#ifndef SOL_SCTP
# define SOL_SCTP	132
#endif

#ifndef SOL_UDPLITE
# define SOL_UDPLITE		136 /* UDP-Lite (RFC 3828) */
#endif

#ifndef SOL_DCCP
# define SOL_DCCP		269
#endif

#ifndef SOL_ALG
# define SOL_ALG		279
#endif

#ifndef HAVE_STRUCT_MMSGHDR
struct mmsghdr {
	struct msghdr msg_hdr;
	unsigned int msg_len;
};
#endif

#endif /* __LAPI_SOCKET_H__ */