1 /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
3 * include/asm-xtensa/socket.h
7 * This file is subject to the terms and conditions of the GNU General Public
8 * License. See the file "COPYING" in the main directory of this archive
12 #ifndef _XTENSA_SOCKET_H
13 #define _XTENSA_SOCKET_H
15 #include <asm/sockios.h>
17 /* For setsockoptions(2) */
21 #define SO_REUSEADDR 2
24 #define SO_DONTROUTE 5
25 #define SO_BROADCAST 6
28 #define SO_SNDBUFFORCE 32
29 #define SO_RCVBUFFORCE 33
30 #define SO_KEEPALIVE 9
31 #define SO_OOBINLINE 10
32 #define SO_NO_CHECK 11
33 #define SO_PRIORITY 12
35 #define SO_BSDCOMPAT 14
36 #define SO_REUSEPORT 15
37 #define SO_PASSCRED 16
38 #define SO_PEERCRED 17
39 #define SO_RCVLOWAT 18
40 #define SO_SNDLOWAT 19
41 #define SO_RCVTIMEO 20
42 #define SO_SNDTIMEO 21
44 /* Security levels - as per NRL IPv6 - don't actually do anything */
46 #define SO_SECURITY_AUTHENTICATION 22
47 #define SO_SECURITY_ENCRYPTION_TRANSPORT 23
48 #define SO_SECURITY_ENCRYPTION_NETWORK 24
50 #define SO_BINDTODEVICE 25
52 /* Socket filtering */
54 #define SO_ATTACH_FILTER 26
55 #define SO_DETACH_FILTER 27
56 #define SO_GET_FILTER SO_ATTACH_FILTER
58 #define SO_PEERNAME 28
59 #define SO_TIMESTAMP 29
60 #define SCM_TIMESTAMP SO_TIMESTAMP
62 #define SO_ACCEPTCONN 30
65 #define SO_TIMESTAMPNS 35
66 #define SCM_TIMESTAMPNS SO_TIMESTAMPNS
70 #define SO_TIMESTAMPING 37
71 #define SCM_TIMESTAMPING SO_TIMESTAMPING
73 #define SO_PROTOCOL 38
76 #define SO_RXQ_OVFL 40
78 #define SO_WIFI_STATUS 41
79 #define SCM_WIFI_STATUS SO_WIFI_STATUS
80 #define SO_PEEK_OFF 42
82 /* Instruct lower device to use last 4-bytes of skb data as FCS */
85 #define SO_LOCK_FILTER 44
87 #define SO_SELECT_ERR_QUEUE 45
89 #define SO_BUSY_POLL 46
91 #define SO_MAX_PACING_RATE 47
93 #define SO_BPF_EXTENSIONS 48
95 #define SO_INCOMING_CPU 49
97 #define SO_ATTACH_BPF 50
98 #define SO_DETACH_BPF SO_DETACH_FILTER
100 #define SO_ATTACH_REUSEPORT_CBPF 51
101 #define SO_ATTACH_REUSEPORT_EBPF 52
103 #define SO_CNX_ADVICE 53
105 #define SCM_TIMESTAMPING_OPT_STATS 54
107 #define SO_MEMINFO 55
109 #define SO_INCOMING_NAPI_ID 56
113 #define SCM_TIMESTAMPING_PKTINFO 58
115 #define SO_PEERGROUPS 59
117 #define SO_ZEROCOPY 60
119 #endif /* _XTENSA_SOCKET_H */