[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.89.20.1 and 1.89.20.2

version 1.89.20.1, 2008/06/29 09:33:20 version 1.89.20.2, 2008/09/28 10:41:05
Line 121  typedef _BSD_SSIZE_T_ ssize_t;
Line 121  typedef _BSD_SSIZE_T_ ssize_t;
 #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 */  #define SO_TIMESTAMP    0x0400          /* timestamp received dgram traffic */
   #define SO_ACCEPTFILTER 0x1000          /* there is an accept filter */
   
   
 /*  /*
Line 148  struct linger {
Line 149  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.
  */   */

Legend:
Removed from v.1.89.20.1  
changed lines
  Added in v.1.89.20.2

CVSweb <webmaster@jp.NetBSD.org>