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

SNMP编程

开发平台:

Unix_Linux

  1. #ifndef _SNMPIPXDOMAIN_H
  2. #define _SNMPIPXDOMAIN_H
  3. #ifdef __cplusplus
  4. extern          "C" {
  5. #endif
  6. #include <net-snmp/library/snmp_transport.h>
  7. #include <net-snmp/library/asn1.h>
  8. #if HAVE_NETIPX_IPX_H
  9. #include <netipx/ipx.h>
  10. #endif
  11. netsnmp_transport *netsnmp_ipx_transport(struct sockaddr_ipx *addr, int local);
  12. /*
  13.  * Convert an textually formatted IPX address into a sockaddr_ipx
  14.  * structure which is written to *addr.  Returns 1 if the conversion
  15.  * was successful, or 0 if it failed.  
  16.  */
  17. int             netsnmp_sockaddr_ipx(struct sockaddr_ipx *addr,
  18.                                      const char *peername);
  19. /*
  20.  * "Constructor" for transport domain object.  
  21.  */
  22. void            netsnmp_ipx_ctor(void);
  23. #ifdef __cplusplus
  24. }
  25. #endif
  26. #endif/*_SNMPIPXDOMAIN_H*/