system_mib.h
上传用户:cxs890
上传日期:2021-05-22
资源大小:347k
文件大小:1k
源码类别:

SNMP编程

开发平台:

C/C++

  1. /*
  2.  *  System MIB group interface - system.h
  3.  *
  4.  */
  5. #ifndef _MIBGROUP_SYSTEM_H
  6. #define _MIBGROUP_SYSTEM_H
  7. #ifdef __cplusplus
  8. #include "asn1.h"
  9. extern "C" {
  10. #endif
  11. config_require(util_funcs)
  12. void init_mib_system (void);
  13. extern FindVarMethod var_system;
  14. void init_system_mib(void);/*** sun define 2000.03.14 ***/
  15. #define SYSDESCR 1
  16. #define SYSOBJECTID 2
  17. #define SYSUPTIME 3
  18. #define SYSCONTACT 4
  19. #define SYSNAME 5
  20. #define SYSLOCATION 6
  21. #define SYSSERVICES 7
  22. #ifndef SWITCH
  23. #define HOSTNAME_MAX_LEN 24
  24. #endif
  25. #ifdef __cplusplus
  26. }
  27. #endif 
  28. #endif /* _MIBGROUP_SYSTEM_H */