neterr.h 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. //=============================================================================
  2. // Microsoft (R) Network Monitor (tm).
  3. // Copyright (C) 1991-1999. All rights reserved.
  4. //
  5. // MODULE: nmneterr.h
  6. //
  7. // This is the top-level include file for all NETWORK topology error codes
  8. // Network Monitor driver network error codes -- DO NOT CHANGE!
  9. //=============================================================================
  10. #if !defined(_NMNETERR_)
  11. #define _NMNETERR_
  12. //=============================================================================
  13. // TOKENRING errors
  14. //=============================================================================
  15. #define NETERR_RING_STATUS_SIGNAL_LOST 0x00008000
  16. #define NETERR_RING_STATUS_HARD_ERROR 0x00004000
  17. #define NETERR_RING_STATUS_SOFT_ERROR 0x00002000
  18. #define NETERR_RING_STATUS_TRANSMIT_BEACON 0x00001000
  19. #define NETERR_RING_STATUS_LOBE_WIRE_FAULT 0x00000800
  20. #define NETERR_RING_STATUS_AUTO_REMOVAL_ERROR 0x00000400
  21. #define NETERR_RING_STATUS_REMOTE_RECEIVED 0x00000200
  22. #define NETERR_RING_STATUS_COUNTER_OVERFLOW 0x00000100
  23. #define NETERR_RING_STATUS_SIGNAL_STATION 0x00000080
  24. #define NETERR_RING_STATUS_RECOVERY 0x00000040
  25. //
  26. // The following defines a bit mask to be compared with to see if
  27. // the state of the ring should cause us to stop the current network
  28. // capture.
  29. //
  30. // LobeWireFault, Signal Loss, Remove Received, and Auto Removal are
  31. // currently the ones that fall into this category.
  32. //
  33. #define NETERR_RING_STOP_CAPTURE 0x00008E00
  34. //=============================================================================
  35. // ETHERNET errors
  36. //=============================================================================
  37. //=============================================================================
  38. // FDDI errors
  39. //=============================================================================
  40. #endif