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

Diff for /src/usr.bin/systat/systat.h between version 1.13 and 1.14

version 1.13, 2009/06/19 07:48:45 version 1.14, 2009/08/13 23:45:35
Line 91 
Line 91 
 void nlisterr(struct nlist []);  void nlisterr(struct nlist []);
   
 #endif  #endif
   
   struct ifcount {
           u_int64_t       ifc_ib;                 /* input bytes */
           u_int64_t       ifc_ip;                 /* input packets */
           u_int64_t       ifc_ie;                 /* input errors */
           u_int64_t       ifc_ob;                 /* output bytes */
           u_int64_t       ifc_op;                 /* output packets */
           u_int64_t       ifc_oe;                 /* output errors */
           u_int64_t       ifc_co;                 /* collisions */
           int             ifc_flags;              /* up / down */
           int             ifc_state;              /* link state */
   } sum;

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