[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.14 and 1.19

version 1.14, 1996/02/09 18:25:36 version 1.19, 1997/02/11 17:47:44
Line 64 
Line 64 
 #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 */
   
 /*  /*
  * Additional options, not kept in so_options.   * Additional options, not kept in so_options.
Line 121  struct linger {
Line 122  struct linger {
 #define AF_IPX          23              /* Novell Internet Protocol */  #define AF_IPX          23              /* Novell Internet Protocol */
 #define AF_SIP          24              /* Simple Internet Protocol */  #define AF_SIP          24              /* Simple Internet Protocol */
 #define pseudo_AF_PIP   25              /* Help Identify PIP packets */  #define pseudo_AF_PIP   25              /* Help Identify PIP packets */
   #define AF_ISDN         26              /* Integrated Services Digital Network*/
   #define AF_E164         AF_ISDN         /* CCITT E.164 recommendation */
   #define AF_NATM         27              /* native ATM access */
   #define AF_ARP          28              /* (rev.) addr. res. prot. (RFC 826) */
   
 #define AF_MAX          26  #define AF_MAX          29
   
 /*  /*
  * Structure used by kernel to store most   * Structure used by kernel to store most
Line 174  struct sockproto {
Line 179  struct sockproto {
 #define PF_IPX          AF_IPX          /* same format as AF_NS */  #define PF_IPX          AF_IPX          /* same format as AF_NS */
 #define PF_RTIP         pseudo_AF_FTIP  /* same format as AF_INET */  #define PF_RTIP         pseudo_AF_FTIP  /* same format as AF_INET */
 #define PF_PIP          pseudo_AF_PIP  #define PF_PIP          pseudo_AF_PIP
   #define PF_NATM         AF_NATM
   #define PF_ARP          AF_ARP
   
 #define PF_MAX          AF_MAX  #define PF_MAX          AF_MAX
   
Line 214  struct sockproto {
Line 221  struct sockproto {
         { "ipx", CTLTYPE_NODE }, \          { "ipx", CTLTYPE_NODE }, \
         { "sip", CTLTYPE_NODE }, \          { "sip", CTLTYPE_NODE }, \
         { "pip", CTLTYPE_NODE }, \          { "pip", CTLTYPE_NODE }, \
           { "natm", CTLTYPE_NODE }, \
 }  }
   
 /*  /*
Line 239  struct sockproto {
Line 247  struct sockproto {
 /*  /*
  * Maximum queue length specifiable by listen(2).   * Maximum queue length specifiable by listen(2).
  */   */
   
 #define SOMAXCONN       128  #define SOMAXCONN       128
   
 /*  /*
Line 291  struct cmsghdr {
Line 300  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) */
   #define SCM_TIMESTAMP   0x02            /* timestamp (struct timeval) */
   
 /*  /*
  * 4.3 compat sockaddr, move to compat file later   * 4.3 compat sockaddr, move to compat file later

Legend:
Removed from v.1.14  
changed lines
  Added in v.1.19

CVSweb <webmaster@jp.NetBSD.org>