[BACK]Return to netstat.h CVS log [TXT][DIR] Up to [local] / src / usr.bin / netstat

Diff for /src/usr.bin/netstat/netstat.h between version 1.8 and 1.9

version 1.8, 1997/06/29 21:46:04 version 1.9, 1997/07/04 04:31:32
Line 38 
Line 38 
   
 #include <sys/cdefs.h>  #include <sys/cdefs.h>
   
 /* What is the max length of a pointer printed with %p? */  /* What is the max length of a pointer printed with %p (including 0x)? */
 #if (UINT_MAX == ULONG_MAX)  #define PLEN    (LONG_BIT / 4 + 2)
 #define PLEN    10  
 #else  
 #define PLEN    18  
 #endif  
   
 int     Aflag;          /* show addresses of protocol control block */  int     Aflag;          /* show addresses of protocol control block */
 int     aflag;          /* show all sockets (including servers) */  int     aflag;          /* show all sockets (including servers) */

Legend:
Removed from v.1.8  
changed lines
  Added in v.1.9