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

Diff for /src/usr.bin/netstat/inet.c between version 1.68 and 1.69

version 1.68, 2003/09/04 20:05:19 version 1.69, 2003/10/17 21:04:59
Line 70 
Line 70 
 #include <netinet/ip_ipip.h>  #include <netinet/ip_ipip.h>
 #include <netinet/ip_ipcomp.h>  #include <netinet/ip_ipcomp.h>
 #include <netinet/ip_ether.h>  #include <netinet/ip_ether.h>
   #include <netinet/ip_carp.h>
   
 #include <arpa/inet.h>  #include <arpa/inet.h>
 #include <limits.h>  #include <limits.h>
Line 832 
Line 833 
         p(ipips_obytes, "\t%qu output byte%s\n");          p(ipips_obytes, "\t%qu output byte%s\n");
         p(ipips_family, "\t%u protocol family mismatche%s\n");          p(ipips_family, "\t%u protocol family mismatche%s\n");
         p(ipips_unspec, "\t%u attempt%s to use tunnel with unspecified endpoint(s)\n");          p(ipips_unspec, "\t%u attempt%s to use tunnel with unspecified endpoint(s)\n");
   #undef p
   }
   
   /*
    * Dump CARP statistics structure.
    */
   void
   carp_stats(u_long off, char *name)
   {
           struct carpstats carpstat;
   
           if (off == 0)
                   return;
           kread(off, (char *)&carpstat, sizeof(carpstat));
           printf("%s:\n", name);
   
   #define p(f, m) if (carpstat.f || sflag <= 1) \
           printf(m, carpstat.f, plural(carpstat.f))
   #define p2(f, m) if (carpstat.f || sflag <= 1) \
           printf(m, carpstat.f)
   
           p(carps_ipackets, "\t%u packet%s received\n");
           p(carps_hdrops, "\t\t%u packet%s shorter than header\n");
           p(carps_badsum, "\t\t%u discarded for bad checksum%s\n");
           p(carps_badver, "\t\t%u discarded packet%s with a bad version\n");
           p2(carps_badlen, "\t\t%u discarded because packet too short\n");
           p2(carps_badauth, "\t\t%u discarded for bad authentication\n");
           p2(carps_badvhid, "\t\t%u discarded for bad vhid\n");
           p2(carps_badaddrs, "\t\t%u discarded because of a bad address list\n");
           p(carps_opackets, "\t%u packet%s sent\n");
   #if notyet
           p(carps_ostates, "\t\t%s state update%s sent\n");
   #endif
 #undef p  #undef p
 }  }
   

Legend:
Removed from v.1.68  
changed lines
  Added in v.1.69