[BACK]Return to socket.h CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / sys / sys

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/sys/sys/socket.h between version 1.87.8.1 and 1.91.2.1

version 1.87.8.1, 2007/11/06 23:34:56 version 1.91.2.1, 2009/01/19 13:20:30
Line 120  typedef _BSD_SSIZE_T_ ssize_t;
Line 120  typedef _BSD_SSIZE_T_ ssize_t;
 #define SO_LINGER       0x0080          /* linger on close if data present */  #define SO_LINGER       0x0080          /* linger on close if data present */
 #define SO_OOBINLINE    0x0100          /* leave received OOB data in line */  #define SO_OOBINLINE    0x0100          /* leave received OOB data in line */
 #define SO_REUSEPORT    0x0200          /* allow local address & port reuse */  #define SO_REUSEPORT    0x0200          /* allow local address & port reuse */
 #define SO_TIMESTAMP    0x0400          /* timestamp received dgram traffic */  /*      SO_OTIMESTAMP   0x0400          */
   #define SO_ACCEPTFILTER 0x1000          /* there is an accept filter */
   #define SO_TIMESTAMP    0x2000          /* timestamp received dgram traffic */
   
   
 /*  /*
Line 130  typedef _BSD_SSIZE_T_ ssize_t;
Line 132  typedef _BSD_SSIZE_T_ ssize_t;
 #define SO_RCVBUF       0x1002          /* receive buffer size */  #define SO_RCVBUF       0x1002          /* receive buffer size */
 #define SO_SNDLOWAT     0x1003          /* send low-water mark */  #define SO_SNDLOWAT     0x1003          /* send low-water mark */
 #define SO_RCVLOWAT     0x1004          /* receive low-water mark */  #define SO_RCVLOWAT     0x1004          /* receive low-water mark */
 #define SO_SNDTIMEO     0x1005          /* send timeout */  /* SO_OSNDTIMEO         0x1005 */
 #define SO_RCVTIMEO     0x1006          /* receive timeout */  /* SO_ORCVTIMEO         0x1006 */
 #define SO_ERROR        0x1007          /* get error status and clear */  #define SO_ERROR        0x1007          /* get error status and clear */
 #define SO_TYPE         0x1008          /* get socket type */  #define SO_TYPE         0x1008          /* get socket type */
 #define SO_OVERFLOWED   0x1009          /* datagrams: return packets dropped */  #define SO_OVERFLOWED   0x1009          /* datagrams: return packets dropped */
Line 140  typedef _BSD_SSIZE_T_ ssize_t;
Line 142  typedef _BSD_SSIZE_T_ ssize_t;
                                          * kernel removes header and supplies                                           * kernel removes header and supplies
                                          * payload                                           * payload
                                          */                                           */
   #define SO_SNDTIMEO     0x100b          /* send timeout */
   #define SO_RCVTIMEO     0x100c          /* receive timeout */
 /*  /*
  * Structure used for manipulating linger option.   * Structure used for manipulating linger option.
  */   */
Line 148  struct linger {
Line 152  struct linger {
         int     l_linger;               /* linger time in seconds */          int     l_linger;               /* linger time in seconds */
 };  };
   
   struct  accept_filter_arg {
           char    af_name[16];
           char    af_arg[256-16];
   };
   
 /*  /*
  * Level number for (get/set)sockopt() to apply to socket itself.   * Level number for (get/set)sockopt() to apply to socket itself.
  */   */
Line 200  struct linger {
Line 209  struct linger {
                                            in interface output routine */                                             in interface output routine */
 #endif  #endif
 #define AF_BLUETOOTH    31              /* Bluetooth: HCI, SCO, L2CAP, RFCOMM */  #define AF_BLUETOOTH    31              /* Bluetooth: HCI, SCO, L2CAP, RFCOMM */
   #define AF_IEEE80211    32              /* IEEE80211 */
   
 #define AF_MAX          32  #define AF_MAX          33
   
 /*  /*
  * Structure used by kernel to store most   * Structure used by kernel to store most
Line 422  struct kinfo_pcb {
Line 432  struct kinfo_pcb {
  */   */
 #define NET_RT_DUMP     1               /* dump; may limit to a.f. */  #define NET_RT_DUMP     1               /* dump; may limit to a.f. */
 #define NET_RT_FLAGS    2               /* by flags, e.g. RESOLVING */  #define NET_RT_FLAGS    2               /* by flags, e.g. RESOLVING */
 #define NET_RT_OIFLIST  3               /* old NET_RT_IFLIST (pre 1.5) */  #define NET_RT_OOIFLIST 3               /* old NET_RT_IFLIST (pre 1.5) */
 #define NET_RT_IFLIST   4               /* survey interface list */  #define NET_RT_OIFLIST  4               /* survey interface list */
 #define NET_RT_MAXID    5  #define NET_RT_IFLIST   5
   #define NET_RT_MAXID    6
   
 #define CTL_NET_RT_NAMES { \  #define CTL_NET_RT_NAMES { \
         { 0, 0 }, \          { 0, 0 }, \
         { "dump", CTLTYPE_STRUCT }, \          { "dump", CTLTYPE_STRUCT }, \
         { "flags", CTLTYPE_STRUCT }, \          { "flags", CTLTYPE_STRUCT }, \
         { 0, 0 }, \          { 0, 0 }, \
           { 0, 0 }, \
         { "iflist", CTLTYPE_STRUCT }, \          { "iflist", CTLTYPE_STRUCT }, \
 }  }
 #endif /* _NETBSD_SOURCE */  #endif /* _NETBSD_SOURCE */
Line 533  struct cmsghdr {
Line 545  struct cmsghdr {
 /* "Socket"-level control message types: */  /* "Socket"-level control message types: */
 #define SCM_RIGHTS      0x01            /* access rights (array of int) */  #define SCM_RIGHTS      0x01            /* access rights (array of int) */
 #if defined(_NETBSD_SOURCE)  #if defined(_NETBSD_SOURCE)
 #define SCM_TIMESTAMP   0x02            /* timestamp (struct timeval) */  /*                      0x02               timestamp (struct timeval50) */
 #define SCM_CREDS       0x04            /* credentials (struct sockcred) */  #define SCM_CREDS       0x04            /* credentials (struct sockcred) */
   #define SCM_TIMESTAMP   0x08            /* timestamp (struct timeval) */
 #endif  #endif
   
 /*  /*

Legend:
Removed from v.1.87.8.1  
changed lines
  Added in v.1.91.2.1

CVSweb <webmaster@jp.NetBSD.org>