TESTMIB.H
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:3k
源码类别:

Windows编程

开发平台:

Visual C++

  1. /*++ BUILD Version: 0001    // Increment this if a change has global effects
  2. Copyright (c) 1992-1996  Microsoft Corporation
  3. Module Name:
  4.     testmib.h
  5. Abstract:
  6.     Sample SNMP Extension Agent for Windows NT.
  7.     These files (testdll.c, testmib.c, and testmib.h) provide an example of 
  8.     how to structure an Extension Agent DLL which works in conjunction with 
  9.     the SNMP Extendible Agent for Windows NT.
  10.     Extensive comments have been included to describe its structure and
  11.     operation.  See also "Microsoft Windows NT SNMP Programmer's Reference".
  12. --*/
  13. #ifndef testmib_h
  14. #define testmib_h
  15. // Necessary includes.
  16. #include <snmp.h>
  17. // MIB Specifics.
  18. #define MIB_PREFIX_LEN            MIB_OidPrefix.idLength
  19. #define MAX_STRING_LEN            255
  20. // Ranges and limits for specific MIB variables.
  21. #define MIB_TOASTER_UP            1
  22. #define MIB_TOASTER_DOWN          2
  23. #define MIB_TOASTER_LIGHTLYWARM   1
  24. #define MIB_TOASTER_BURNT         10
  25. #define MIB_TOASTER_WHITEBREAD    1
  26. #define MIB_TOASTER_OTHERBREAD    7
  27. // MIB function actions.
  28. #define MIB_ACTION_GET         ASN_RFC1157_GETREQUEST
  29. #define MIB_ACTION_SET         ASN_RFC1157_SETREQUEST
  30. #define MIB_ACTION_GETNEXT     ASN_RFC1157_GETNEXTREQUEST
  31. // MIB Variable access privileges.
  32. #define MIB_ACCESS_READ        0
  33. #define MIB_ACCESS_WRITE       1
  34. #define MIB_ACCESS_READWRITE   2
  35. // Macro to determine number of sub-oid's in array.
  36. #define OID_SIZEOF( Oid )      ( sizeof Oid / sizeof(UINT) )
  37. // MIB variable ENTRY definition.  This structure defines the format for
  38. // each entry in the MIB.
  39. typedef struct mib_entry
  40.            {
  41.    AsnObjectIdentifier Oid;
  42.    void *              Storage;
  43.    BYTE                Type;
  44.    UINT                Access;
  45.    UINT                (*MibFunc)( UINT, struct mib_entry *,
  46.                                    RFC1157VarBind * );
  47.    struct mib_entry *  MibNext;
  48.    } MIB_ENTRY;
  49. // Internal MIB structure.
  50. extern MIB_ENTRY Mib[];
  51. extern UINT      MIB_num_variables;
  52. // Prefix to every variable in the MIB.
  53. extern AsnObjectIdentifier MIB_OidPrefix;
  54. // Function Prototypes.
  55. UINT ResolveVarBind(
  56.         IN OUT RFC1157VarBind *VarBind, // Variable Binding to resolve
  57. IN UINT PduAction               // Action specified in PDU
  58. );
  59. UINT MIB_leaf_func(
  60.         IN UINT Action,
  61. IN MIB_ENTRY *MibPtr,
  62. IN RFC1157VarBind *VarBind
  63. );
  64. UINT MIB_control_func(
  65.         IN UINT Action,
  66. IN MIB_ENTRY *MibPtr,
  67. IN RFC1157VarBind *VarBind
  68. );
  69. UINT MIB_doneness_func(
  70.         IN UINT Action,
  71. IN MIB_ENTRY *MibPtr,
  72. IN RFC1157VarBind *VarBind
  73. );
  74. UINT MIB_toasttype_func(
  75.         IN UINT Action,
  76. IN MIB_ENTRY *MibPtr,
  77. IN RFC1157VarBind *VarBind
  78. );
  79. #endif /* testmib_h */