]>
Commit | Line | Data |
---|---|---|
8b4c32ae RH |
1 | #define TARGET_SOL_SOCKET 0xffff |
2 | ||
3 | #define TARGET_SO_DEBUG 0x0001 | |
4 | #define TARGET_SO_REUSEADDR 0x0004 | |
5 | #define TARGET_SO_KEEPALIVE 0x0008 | |
6 | #define TARGET_SO_DONTROUTE 0x0010 | |
7 | #define TARGET_SO_BROADCAST 0x0020 | |
8 | #define TARGET_SO_LINGER 0x0080 | |
9 | #define TARGET_SO_OOBINLINE 0x0100 | |
10 | #define TARGET_SO_REUSEPORT 0x0200 | |
11 | #define TARGET_SO_SNDBUF 0x1001 | |
12 | #define TARGET_SO_RCVBUF 0x1002 | |
13 | #define TARGET_SO_SNDBUFFORCE 0x100a | |
14 | #define TARGET_SO_RCVBUFFORCE 0x100b | |
15 | #define TARGET_SO_SNDLOWAT 0x1003 | |
16 | #define TARGET_SO_RCVLOWAT 0x1004 | |
17 | #define TARGET_SO_SNDTIMEO 0x1005 | |
18 | #define TARGET_SO_RCVTIMEO 0x1006 | |
19 | #define TARGET_SO_ERROR 0x1007 | |
20 | #define TARGET_SO_TYPE 0x1008 | |
21 | #define TARGET_SO_PROTOCOL 0x1028 | |
22 | #define TARGET_SO_DOMAIN 0x1029 | |
23 | #define TARGET_SO_PEERNAME 0x2000 | |
24 | #define TARGET_SO_NO_CHECK 0x400b | |
25 | #define TARGET_SO_PRIORITY 0x400c | |
26 | #define TARGET_SO_BSDCOMPAT 0x400e | |
27 | #define TARGET_SO_PASSCRED 0x4010 | |
28 | #define TARGET_SO_PEERCRED 0x4011 | |
29 | #define TARGET_SO_TIMESTAMP 0x4012 | |
30 | #define TARGET_SCM_TIMESTAMP TARGET_SO_TIMESTAMP | |
31 | #define TARGET_SO_TIMESTAMPNS 0x4013 | |
32 | #define TARGET_SCM_TIMESTAMPNS TARGET_SO_TIMESTAMPNS | |
33 | ||
34 | #define TARGET_SO_SECURITY_AUTHENTICATION 0x4016 | |
35 | #define TARGET_SO_SECURITY_ENCRYPTION_TRANSPORT 0x4017 | |
36 | #define TARGET_SO_SECURITY_ENCRYPTION_NETWORK 0x4018 | |
37 | ||
38 | #define TARGET_SO_BINDTODEVICE 0x4019 | |
39 | #define TARGET_SO_ATTACH_FILTER 0x401a | |
40 | #define TARGET_SO_DETACH_FILTER 0x401b | |
41 | #define TARGET_SO_GET_FILTER TARGET_SO_ATTACH_FILTER | |
42 | #define TARGET_SO_ACCEPTCONN 0x401c | |
43 | #define TARGET_SO_PEERSEC 0x401d | |
44 | #define TARGET_SO_PASSSEC 0x401e | |
45 | #define TARGET_SO_MARK 0x401f | |
46 | #define TARGET_SO_TIMESTAMPING 0x4020 | |
47 | #define TARGET_SCM_TIMESTAMPING TARGET_SO_TIMESTAMPING | |
48 | #define TARGET_SO_RXQ_OVFL 0x4021 | |
49 | #define TARGET_SO_WIFI_STATUS 0x4022 | |
50 | #define TARGET_SCM_WIFI_STATUS TARGET_SO_WIFI_STATUS | |
51 | #define TARGET_SO_PEEK_OFF 0x4023 | |
52 | #define TARGET_SO_NOFCS 0x4024 | |
53 | #define TARGET_SO_LOCK_FILTER 0x4025 | |
54 | #define TARGET_SO_SELECT_ERR_QUEUE 0x4026 | |
55 | #define TARGET_SO_BUSY_POLL 0x4027 | |
56 | #define TARGET_SO_MAX_PACING_RATE 0x4028 | |
57 | #define TARGET_SO_BPF_EXTENSIONS 0x4029 | |
58 | #define TARGET_SO_INCOMING_CPU 0x402A | |
59 | #define TARGET_SO_ATTACH_BPF 0x402B | |
60 | #define TARGET_SO_DETACH_BPF TARGET_SO_DETACH_FILTER | |
61 | ||
62 | #define TARGET_SO_ATTACH_REUSEPORT_CBPF 0x402C | |
63 | #define TARGET_SO_ATTACH_REUSEPORT_EBPF 0x402D | |
64 | ||
65 | #define TARGET_SO_CNX_ADVICE 0x402E | |
66 | ||
67 | /** sock_type - Socket types - default values | |
68 | * | |
69 | * | |
70 | * @SOCK_STREAM - stream (connection) socket | |
71 | * @SOCK_DGRAM - datagram (conn.less) socket | |
72 | * @SOCK_RAW - raw socket | |
73 | * @SOCK_RDM - reliably-delivered message | |
74 | * @SOCK_SEQPACKET - sequential packet socket | |
75 | * @SOCK_DCCP - Datagram Congestion Control Protocol socket | |
76 | * @SOCK_PACKET - linux specific way of getting packets at the dev level. | |
77 | * For writing rarp and other similar things on the user | |
78 | * level. | |
79 | * @SOCK_CLOEXEC - sets the close-on-exec (FD_CLOEXEC) flag. | |
80 | * @SOCK_NONBLOCK - sets the O_NONBLOCK file status flag. | |
81 | */ | |
82 | enum sock_type { | |
83 | TARGET_SOCK_STREAM = 1, | |
84 | TARGET_SOCK_DGRAM = 2, | |
85 | TARGET_SOCK_RAW = 3, | |
86 | TARGET_SOCK_RDM = 4, | |
87 | TARGET_SOCK_SEQPACKET = 5, | |
88 | TARGET_SOCK_DCCP = 6, | |
89 | TARGET_SOCK_PACKET = 10, | |
90 | TARGET_SOCK_CLOEXEC = 010000000, | |
91 | TARGET_SOCK_NONBLOCK = 0x40000000, | |
92 | }; | |
93 | ||
94 | #define TARGET_SOCK_MAX (TARGET_SOCK_PACKET + 1) | |
95 | #define TARGET_SOCK_TYPE_MASK 0xf /* Covers up to TARGET_SOCK_MAX-1. */ | |
96 | ||
97 | #define ARCH_HAS_SOCKET_TYPES 1 |