home *** CD-ROM | disk | FTP | other *** search
/ ftp.wwiv.com / ftp.wwiv.com.zip / ftp.wwiv.com / pub / MISC / SQDEV200.ZIP / SAMPLES / SSTAT.H < prev    next >
C/C++ Source or Header  |  1994-05-23  |  526b  |  18 lines

  1. #include "msgapi.h"
  2. #include "typedefs.h"
  3. #include "sstat2.h"
  4.  
  5.  
  6. /* Linked list of statistics information which parallels the linked         *
  7.  * list of nodes to scan, 'scan[]'.  Used internally by sstat               */
  8.  
  9. struct _statlist
  10. {
  11.   NETADDR node;                 /* Address of this node                     */
  12.  
  13.   dword out_msgs;               /* Total # of msgs sent to this node        */
  14.   dword out_bytes;              /* Total # of bytes sent to this node       */
  15.   struct _statlist *next;
  16. };
  17.  
  18.