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

SNMP编程

开发平台:

Unix_Linux

  1. /*
  2.  * tcpConn data access header
  3.  *
  4.  * $Id: tcpConn.h,v 1.2 2004/09/26 20:30:22 rstory Exp $
  5.  */
  6. /**---------------------------------------------------------------------*/
  7. /*
  8.  * configure required files
  9.  *
  10.  * Notes:
  11.  *
  12.  * 1) prefer functionality over platform, where possible. If a method
  13.  *    is available for multiple platforms, test that first. That way
  14.  *    when a new platform is ported, it won't need a new test here.
  15.  *
  16.  * 2) don't do detail requirements here. If, for example,
  17.  *    HPUX11 had different reuirements than other HPUX, that should
  18.  *    be handled in the *_hpux.h header file.
  19.  */
  20. config_require(tcp-mib/data_access/tcpConn_common);
  21. #if defined( linux )
  22. config_require(tcp-mib/data_access/tcpConn_linux);
  23. #else
  24. #   define NETSNMP_TCPCONN_COMMON_ONLY
  25. #endif