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

SNMP编程

开发平台:

C/C++

  1. /*
  2.  * mibincl.h
  3.  */
  4. #ifndef _MIBGROUP_MIBINCL_H
  5. #define _MIBGROUP_MIBINCL_H
  6. #include <stdio.h>
  7. #include <sys/types.h>
  8. #if HAVE_STDLIB_H
  9. #include <stdlib.h>
  10. #endif
  11. #if HAVE_MALLOC_H
  12. #include <malloc.h>
  13. #endif
  14. #if TIME_WITH_SYS_TIME
  15. # ifdef WIN32
  16. #  include <sys/timeb.h>
  17. # else
  18. #  include <time.h>
  19. # endif
  20. # include <time.h>
  21. #else
  22. # if HAVE_SYS_TIME_H
  23. #  include <sys/time.h>
  24. # else
  25. #  include <time.h>
  26. # endif
  27. #endif
  28. #if HAVE_NETINET_IN_H
  29. #include <netinet/in.h>
  30. #endif
  31. #if HAVE_SYS_SOCKET_H
  32. #include <sys/socket.h>
  33. #endif
  34. #include "mib_module_config.h"
  35. #include "asn1.h"
  36. #include "snmp_api.h"
  37. #include "snmp_impl.h"
  38. #include "snmp_vars.h"
  39. #include "agent_read_config.h"
  40. #include "var_struct.h"
  41. #include "snmp.h"
  42. #include "mib.h"
  43. #include "snmp_debug.h"
  44. #include "snmp_logging.h"
  45. #include "read_config.h"
  46. #include "tools.h"
  47. #include "agent_trap.h"
  48. #include "callback.h"
  49. #define u_char unsigned char
  50. #define u_short unsigned short
  51. #endif