[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.23 and 1.24

version 1.23, 1997/05/02 19:02:02 version 1.24, 1997/05/02 22:19:13
Line 131  struct linger {
Line 131  struct linger {
 #define AF_MAX          30  #define AF_MAX          30
   
 /*  /*
  * Structure used by kernel to store most   * Structure used by kernel to store most addresses.
  * addresses.   * Force this to have the host's natural alignment.
  */   */
 struct sockaddr {  struct sockaddr {
         u_char  sa_len;                 /* total length */          u_char  sa_len;                 /* total length */
         u_char  sa_family;              /* address family */          u_char  sa_family;              /* address family */
         char    sa_data[14];            /* actually longer; address value */          char    sa_data[14];            /* actually longer; address value */
 };  } __attribute__((aligned(sizeof(long))));
   
 /*  /*
  * Structure used by kernel to pass protocol   * Structure used by kernel to pass protocol

Legend:
Removed from v.1.23  
changed lines
  Added in v.1.24

CVSweb <webmaster@jp.NetBSD.org>