diff options
author | David Vrabel <david.vrabel@csr.com> | 2008-11-19 09:48:07 -0500 |
---|---|---|
committer | David Vrabel <david.vrabel@csr.com> | 2008-11-19 09:48:07 -0500 |
commit | dba0a918722ee0f0ba3442575e4448c3ab622be4 (patch) | |
tree | fdb466cf09e7916135098d651b18924b2fe9ba5f /arch/cris/include/asm/socket.h | |
parent | 0996e6382482ce9014787693d3884e9468153a5c (diff) | |
parent | 7f0f598a0069d1ab072375965a4b69137233169c (diff) |
Merge branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6 into for-upstream
Diffstat (limited to 'arch/cris/include/asm/socket.h')
-rw-r--r-- | arch/cris/include/asm/socket.h | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/arch/cris/include/asm/socket.h b/arch/cris/include/asm/socket.h new file mode 100644 index 000000000000..9df0ca82f5de --- /dev/null +++ b/arch/cris/include/asm/socket.h | |||
@@ -0,0 +1,61 @@ | |||
1 | #ifndef _ASM_SOCKET_H | ||
2 | #define _ASM_SOCKET_H | ||
3 | |||
4 | /* almost the same as asm-i386/socket.h */ | ||
5 | |||
6 | #include <asm/sockios.h> | ||
7 | |||
8 | /* For setsockoptions(2) */ | ||
9 | #define SOL_SOCKET 1 | ||
10 | |||
11 | #define SO_DEBUG 1 | ||
12 | #define SO_REUSEADDR 2 | ||
13 | #define SO_TYPE 3 | ||
14 | #define SO_ERROR 4 | ||
15 | #define SO_DONTROUTE 5 | ||
16 | #define SO_BROADCAST 6 | ||
17 | #define SO_SNDBUF 7 | ||
18 | #define SO_RCVBUF 8 | ||
19 | #define SO_SNDBUFFORCE 32 | ||
20 | #define SO_RCVBUFFORCE 33 | ||
21 | #define SO_KEEPALIVE 9 | ||
22 | #define SO_OOBINLINE 10 | ||
23 | #define SO_NO_CHECK 11 | ||
24 | #define SO_PRIORITY 12 | ||
25 | #define SO_LINGER 13 | ||
26 | #define SO_BSDCOMPAT 14 | ||
27 | /* To add :#define SO_REUSEPORT 15 */ | ||
28 | #define SO_PASSCRED 16 | ||
29 | #define SO_PEERCRED 17 | ||
30 | #define SO_RCVLOWAT 18 | ||
31 | #define SO_SNDLOWAT 19 | ||
32 | #define SO_RCVTIMEO 20 | ||
33 | #define SO_SNDTIMEO 21 | ||
34 | |||
35 | /* Security levels - as per NRL IPv6 - don't actually do anything */ | ||
36 | #define SO_SECURITY_AUTHENTICATION 22 | ||
37 | #define SO_SECURITY_ENCRYPTION_TRANSPORT 23 | ||
38 | #define SO_SECURITY_ENCRYPTION_NETWORK 24 | ||
39 | |||
40 | #define SO_BINDTODEVICE 25 | ||
41 | |||
42 | /* Socket filtering */ | ||
43 | #define SO_ATTACH_FILTER 26 | ||
44 | #define SO_DETACH_FILTER 27 | ||
45 | |||
46 | #define SO_PEERNAME 28 | ||
47 | #define SO_TIMESTAMP 29 | ||
48 | #define SCM_TIMESTAMP SO_TIMESTAMP | ||
49 | |||
50 | #define SO_ACCEPTCONN 30 | ||
51 | |||
52 | #define SO_PEERSEC 31 | ||
53 | #define SO_PASSSEC 34 | ||
54 | #define SO_TIMESTAMPNS 35 | ||
55 | #define SCM_TIMESTAMPNS SO_TIMESTAMPNS | ||
56 | |||
57 | #define SO_MARK 36 | ||
58 | |||
59 | #endif /* _ASM_SOCKET_H */ | ||
60 | |||
61 | |||