home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 2 BBS / 02-BBS.zip / 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.