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

SNMP编程

开发平台:

Unix_Linux

  1. #ifndef _SNMPTCPIPV6DOMAIN_H
  2. #define _SNMPTCPIPV6DOMAIN_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. /*
  9.  * The SNMP over TCP over IPv6 transport domain is identified by
  10.  * transportDomainTcpIpv4 as defined in RFC 3419.
  11.  */
  12. #define TRANSPORT_DOMAIN_TCP_IPV6 1,3,6,1,2,1,100,1,6
  13. extern oid      netsnmp_TCPIPv6Domain[];
  14. netsnmp_transport *netsnmp_tcp6_transport(struct sockaddr_in6 *addr, 
  15.   int local);
  16. /*
  17.  * "Constructor" for transport domain object.  
  18.  */
  19. void            netsnmp_tcp6_ctor(void);
  20. #ifdef __cplusplus
  21. }
  22. #endif
  23. #endif/*_SNMPTCPIPV6DOMAIN_H*/