lnkstat.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:3k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /******************************************************************************
  2.  *
  3.  * (C)Copyright 1998,1999 SysKonnect,
  4.  * a business unit of Schneider & Koch & Co. Datensysteme GmbH.
  5.  *
  6.  * This program is free software; you can redistribute it and/or modify
  7.  * it under the terms of the GNU General Public License as published by
  8.  * the Free Software Foundation; either version 2 of the License, or
  9.  * (at your option) any later version.
  10.  *
  11.  * The information in this file is provided "AS IS" without warranty.
  12.  *
  13.  ******************************************************************************/
  14. /*
  15.  * Definition of the Error Log Structure
  16.  * This structure will be copied into the Error Log buffer
  17.  * during the NDIS General Request ReadErrorLog by the MAC Driver
  18.  */
  19. struct s_error_log {
  20. /*
  21.  * place holder for token ring adapter error log (zeros)
  22.  */
  23. u_char reserved_0 ; /* byte 0 inside Error Log */
  24. u_char reserved_1 ; /* byte 1 */
  25. u_char reserved_2 ; /* byte 2 */
  26. u_char reserved_3 ; /* byte 3 */
  27. u_char reserved_4 ; /* byte 4 */
  28. u_char reserved_5 ; /* byte 5 */
  29. u_char reserved_6 ; /* byte 6 */
  30. u_char reserved_7 ; /* byte 7 */
  31. u_char reserved_8 ; /* byte 8 */
  32. u_char reserved_9 ; /* byte 9 */
  33. u_char reserved_10 ; /* byte 10 */
  34. u_char reserved_11 ; /* byte 11 */
  35. u_char reserved_12 ; /* byte 12 */
  36. u_char reserved_13 ; /* byte 13 */
  37. /*
  38.  * FDDI link statistics 
  39.  */
  40. /*
  41.  * smt error low
  42.  */
  43. #define SMT_ERL_AEB (1<<15) /* A elast. buffer */
  44. #define SMT_ERL_BLC (1<<14) /* B link error condition */
  45. #define SMT_ERL_ALC (1<<13) /* A link error condition */
  46. #define SMT_ERL_NCC (1<<12) /* not copied condition */
  47. #define SMT_ERL_FEC (1<<11) /* frame error condition */
  48. /*
  49.  * smt event low
  50.  */
  51. #define SMT_EVL_NCE (1<<5)
  52. u_short smt_error_low ; /* byte 14/15 */
  53. u_short smt_error_high ; /* byte 16/17 */
  54. u_short smt_event_low ; /* byte 18/19 */
  55. u_short smt_event_high ; /* byte 20/21 */
  56. u_short connection_policy_violation ; /* byte 22/23 */
  57. u_short port_event ; /* byte 24/25 */
  58. u_short set_count_low ; /* byte 26/27 */
  59. u_short set_count_high ; /* byte 28/29 */
  60. u_short aci_id_code ; /* byte 30/31 */
  61. u_short purge_frame_counter ; /* byte 32/33 */
  62. /*
  63.  * CMT and RMT state machines
  64.  */
  65. u_short ecm_state ; /* byte 34/35 */
  66. u_short pcm_a_state ; /* byte 36/37 */
  67. u_short pcm_b_state ; /* byte 38/39 */
  68. u_short cfm_state ; /* byte 40/41 */
  69. u_short rmt_state ; /* byte 42/43 */
  70. u_short not_used[30] ; /* byte 44-103 */
  71. u_short ucode_version_level ; /* byte 104/105 */
  72. u_short not_used_1 ; /* byte 106/107 */
  73. u_short not_used_2 ; /* byte 108/109 */
  74. } ;