root/include/asm-sparc/socket.h

/* [previous][next][first][last][top][bottom][index][help] */

INCLUDED FROM


   1 /* $Id: socket.h,v 1.6 1996/04/04 12:51:26 davem Exp $ */
   2 #ifndef _ASM_SOCKET_H
   3 #define _ASM_SOCKET_H
   4 
   5 #include <asm/sockios.h>
   6 
   7 /* For setsockoptions(2) */
   8 #define SOL_SOCKET      0xffff
   9 
  10 #define SO_DEBUG        0x0001
  11 #define SO_REUSEADDR    0x0004
  12 #define SO_KEEPALIVE    0x0008
  13 #define SO_DONTROUTE    0x0010
  14 #define SO_BROADCAST    0x0020
  15 #define SO_LINGER       0x0080
  16 #define SO_OOBINLINE    0x0100
  17 /* To add :#define SO_REUSEPORT 0x0200 */
  18 #define SO_BSDCOMPAT    0x0400
  19 
  20 /* wha!??? */
  21 #define SO_DONTLINGER   (~SO_LINGER)  /* Older SunOS compat. hack */
  22 
  23 #define SO_SNDBUF       0x1001
  24 #define SO_RCVBUF       0x1002
  25 #define SO_ERROR        0x1007
  26 #define SO_TYPE         0x1008
  27 
  28 /* Linux specific, keep the same. */
  29 #define SO_NO_CHECK     0x000b
  30 #define SO_PRIORITY     0x000c
  31 
  32 #endif /* _ASM_SOCKET_H */

/* [previous][next][first][last][top][bottom][index][help] */