[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.5 and 1.5.4.1

version 1.5, 1993/06/27 05:59:06 version 1.5.4.1, 1993/11/10 19:53:14
Line 92  struct linger {
Line 92  struct linger {
  * Address families.   * Address families.
  */   */
 #define AF_UNSPEC       0               /* unspecified */  #define AF_UNSPEC       0               /* unspecified */
 #define AF_UNIX         1               /* local to host (pipes, portals) */  #define AF_LOCAL        1               /* local to host (pipes, portals) */
   #define AF_UNIX         AF_LOCAL
 #define AF_INET         2               /* internetwork: UDP, TCP, etc. */  #define AF_INET         2               /* internetwork: UDP, TCP, etc. */
 #define AF_IMPLINK      3               /* arpanet imp addresses */  #define AF_IMPLINK      3               /* arpanet imp addresses */
 #define AF_PUP          4               /* pup protocols: e.g. BSP */  #define AF_PUP          4               /* pup protocols: e.g. BSP */
Line 138  struct sockproto {
Line 139  struct sockproto {
  * Protocol families, same as address families for now.   * Protocol families, same as address families for now.
  */   */
 #define PF_UNSPEC       AF_UNSPEC  #define PF_UNSPEC       AF_UNSPEC
 #define PF_UNIX         AF_UNIX  #define PF_LOCAL        AF_LOCAL
   #define PF_UNIX         AF_LOCAL
 #define PF_INET         AF_INET  #define PF_INET         AF_INET
 #define PF_IMPLINK      AF_IMPLINK  #define PF_IMPLINK      AF_IMPLINK
 #define PF_PUP          AF_PUP  #define PF_PUP          AF_PUP

Legend:
Removed from v.1.5  
changed lines
  Added in v.1.5.4.1

CVSweb <webmaster@jp.NetBSD.org>