~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~ [ freetext search ] ~ [ file search ] ~

Linux Cross Reference
Linux/include/asm-arm/socket.h

Version: ~ [ 2.4.0 ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 #ifndef _ASMARM_SOCKET_H
  2 #define _ASMARM_SOCKET_H
  3 
  4 #include <asm/sockios.h>
  5 
  6 /* For setsockoptions(2) */
  7 #define SOL_SOCKET      1
  8 
  9 #define SO_DEBUG        1
 10 #define SO_REUSEADDR    2
 11 #define SO_TYPE         3
 12 #define SO_ERROR        4
 13 #define SO_DONTROUTE    5
 14 #define SO_BROADCAST    6
 15 #define SO_SNDBUF       7
 16 #define SO_RCVBUF       8
 17 #define SO_KEEPALIVE    9
 18 #define SO_OOBINLINE    10
 19 #define SO_NO_CHECK     11
 20 #define SO_PRIORITY     12
 21 #define SO_LINGER       13
 22 #define SO_BSDCOMPAT    14
 23 /* To add :#define SO_REUSEPORT 15 */
 24 #define SO_PASSCRED     16
 25 #define SO_PEERCRED     17
 26 #define SO_RCVLOWAT     18
 27 #define SO_SNDLOWAT     19
 28 #define SO_RCVTIMEO     20
 29 #define SO_SNDTIMEO     21
 30 
 31 /* Security levels - as per NRL IPv6 - don't actually do anything */
 32 #define SO_SECURITY_AUTHENTICATION              22
 33 #define SO_SECURITY_ENCRYPTION_TRANSPORT        23
 34 #define SO_SECURITY_ENCRYPTION_NETWORK          24
 35 
 36 #define SO_BINDTODEVICE 25
 37 
 38 /* Socket filtering */
 39 #define SO_ATTACH_FILTER        26
 40 #define SO_DETACH_FILTER        27
 41 
 42 #define SO_PEERNAME             28
 43 #define SO_TIMESTAMP            29
 44 #define SCM_TIMESTAMP           SO_TIMESTAMP
 45 
 46 /* Nast libc5 fixup - bletch */
 47 #if defined(__KERNEL__)
 48 /* Socket types. */
 49 #define SOCK_STREAM     1               /* stream (connection) socket   */
 50 #define SOCK_DGRAM      2               /* datagram (conn.less) socket  */
 51 #define SOCK_RAW        3               /* raw socket                   */
 52 #define SOCK_RDM        4               /* reliably-delivered message   */
 53 #define SOCK_SEQPACKET  5               /* sequential packet socket     */
 54 #define SOCK_PACKET     10              /* linux specific way of        */
 55                                         /* getting packets at the dev   */
 56                                         /* level.  For writing rarp and */
 57                                         /* other similar things on the  */
 58                                         /* user level.                  */
 59 #endif
 60 
 61 #endif /* _ASM_SOCKET_H */
 62 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~ [ freetext search ] ~ [ file search ] ~

This page was automatically generated by the LXR engine.
Visit the LXR main site for more information.