home *** CD-ROM | disk | FTP | other *** search
/ Amiga Developer CD v1.2 / amidev_cd_12.iso / devcon / milan_1991 / devcon91.2 / network / sana2 / include / sana2specialstats.h < prev    next >
C/C++ Source or Header  |  1992-09-01  |  1KB  |  58 lines

  1. #ifndef SANA2_SANA2SPECIALSTATS_H
  2. #define SANA2_SANA2SPECIALSTATS_H 1
  3. /*
  4. **    $Filename: sana2specialstats.h $
  5. **    $Release: Developer Information$
  6. **    $Revision: 1.2 $
  7. **    $Date: 91/05/08 $
  8. **
  9. **    Defined ids for SANA-II special statistics.
  10. **
  11. **    (C) Copyright 1991 Raymond S. Brand
  12. **        All Rights Reserved
  13. **
  14. **    (C) Copyright 1991 Commodore-Amiga Inc.
  15. **        All Rights Reserved
  16. */
  17.  
  18. /*
  19. ** Contributions from:
  20. **    Raymond S. Brand,   rsbx@cbmvax.commodore.com,  (215) 431-9100
  21. **    Martin Hunt,      martin@cbmvax.commodore.com,  (215) 431-9100
  22. **    Perry Kivolowitz,           ASDG Incorporated,  (608) 273-6585
  23. */
  24.  
  25. #ifndef SANA2_SANA2DEVICE_H
  26. #include <sana2/sana2device.h>
  27. #endif    /* !SANA2_SANA2DEVICE_H */
  28.  
  29.  
  30. /*
  31.  * The SANA-II special statistic identifier is an unsigned 32 number.
  32.  * The upper 16 bits identify the type of network wire type to which
  33.  * the statistic applies and the lower 16 bits identify the particular
  34.  * statistic.
  35.  */
  36.  
  37.  
  38.  
  39. /*
  40.  * defined ethernet special statistics
  41.  */
  42.  
  43. #define S2SS_ETHERNET_BADMULTICAST    ((((S2WireType_Ethernet)&0xffff)<<16)|0x0000)
  44. /*
  45.  * This count will record the number of times a received packet tripped
  46.  * the hardware's multicast filtering mechanism but was not actually in
  47.  * the current multicast table.
  48.  */
  49.  
  50. #define S2SS_ETHERNET_RETRIES        ((((S2WireType_Ethernet)&0xffff)<<16)|0x0001)
  51. /*
  52.  * This count records the total number of retries which have resulted
  53.  * from transmissions on this board. 
  54.  */
  55.  
  56.  
  57. #endif    /* SANA2_SANA2SPECIALSTATS_H */
  58.