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

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

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

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

~ [ 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.