mirror of
https://github.com/torvalds/linux.git
synced 2024-10-31 17:21:49 +00:00
1da177e4c3
Initial git repository build. I'm not bothering with the full history, even though we have it. We can create a separate "historical" git archive of that later if we want to, and in the meantime it's about 3.2GB when imported into git - space that would just make the early git days unnecessarily complicated, when we don't have a lot of good infrastructure for it. Let it rip!
57 lines
1.2 KiB
C
57 lines
1.2 KiB
C
#ifndef _ASM_SOCKET_H
|
|
#define _ASM_SOCKET_H
|
|
|
|
/* Socket-level I/O control calls. */
|
|
#define FIOSETOWN 0x8901
|
|
#define SIOCSPGRP 0x8902
|
|
#define FIOGETOWN 0x8903
|
|
#define SIOCGPGRP 0x8904
|
|
#define SIOCATMARK 0x8905
|
|
#define SIOCGSTAMP 0x8906 /* Get stamp */
|
|
|
|
/* For setsockopt(2) */
|
|
#define SOL_SOCKET 1
|
|
|
|
#define SO_DEBUG 1
|
|
#define SO_REUSEADDR 2
|
|
#define SO_TYPE 3
|
|
#define SO_ERROR 4
|
|
#define SO_DONTROUTE 5
|
|
#define SO_BROADCAST 6
|
|
#define SO_SNDBUF 7
|
|
#define SO_RCVBUF 8
|
|
#define SO_KEEPALIVE 9
|
|
#define SO_OOBINLINE 10
|
|
#define SO_NO_CHECK 11
|
|
#define SO_PRIORITY 12
|
|
#define SO_LINGER 13
|
|
#define SO_BSDCOMPAT 14
|
|
/* To add :#define SO_REUSEPORT 15 */
|
|
#define SO_RCVLOWAT 16
|
|
#define SO_SNDLOWAT 17
|
|
#define SO_RCVTIMEO 18
|
|
#define SO_SNDTIMEO 19
|
|
#define SO_PASSCRED 20
|
|
#define SO_PEERCRED 21
|
|
|
|
/* Security levels - as per NRL IPv6 - don't actually do anything */
|
|
#define SO_SECURITY_AUTHENTICATION 22
|
|
#define SO_SECURITY_ENCRYPTION_TRANSPORT 23
|
|
#define SO_SECURITY_ENCRYPTION_NETWORK 24
|
|
|
|
#define SO_BINDTODEVICE 25
|
|
|
|
/* Socket filtering */
|
|
#define SO_ATTACH_FILTER 26
|
|
#define SO_DETACH_FILTER 27
|
|
|
|
#define SO_PEERNAME 28
|
|
#define SO_TIMESTAMP 29
|
|
#define SCM_TIMESTAMP SO_TIMESTAMP
|
|
|
|
#define SO_ACCEPTCONN 30
|
|
|
|
#define SO_PEERSEC 31
|
|
|
|
#endif /* _ASM_SOCKET_H */
|