interface.h
上传用户:wxp200602
上传日期:2007-10-30
资源大小:4028k
文件大小:1k
源码类别:

SNMP编程

开发平台:

Unix_Linux

  1. /*
  2.  * interface data access header
  3.  *
  4.  * $Id: interface.h,v 1.10 2004/11/16 23:42:03 rstory Exp $
  5.  */
  6. #ifndef NETSNMP_ACCESS_INTERFACE_CONFIG_H
  7. #define NETSNMP_ACCESS_INTERFACE_CONFIG_H
  8. /**---------------------------------------------------------------------*/
  9. /*
  10.  * configure required files
  11.  *
  12.  * Notes:
  13.  *
  14.  * 1) prefer functionality over platform, where possible. If a method
  15.  *    is available for multiple platforms, test that first. That way
  16.  *    when a new platform is ported, it won't need a new test here.
  17.  *
  18.  * 2) don't do detail requirements here. If, for example,
  19.  *    HPUX11 had different reuirements than other HPUX, that should
  20.  *    be handled in the *_hpux.h header file.
  21.  */
  22. config_require(if-mib/data_access/interface_common)
  23. #if defined( linux )
  24. config_require(if-mib/data_access/interface_linux);
  25. config_require(if-mib/data_access/interface_ioctl);
  26. #else
  27. #   define NETSNMP_ACCESS_INTERFACE_NOARCH 1
  28. #endif
  29. /*
  30.  * since the configure script will pick up this header and include it in
  31.  * mib_module_includes.h, but actual interface structure definitions which
  32.  * are used in other headers are defined in net-snmp/data_access/interface.h,
  33.  * we need to ignore the normal convention of not including headers in
  34.  * a header, or we will not be able to compile.
  35.  */
  36. #include <net-snmp/data_access/interface.h>
  37. #endif /* NETSNMP_ACCESS_INTERFACE_CONFIG_H */