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

SNMP编程

开发平台:

Unix_Linux

  1. #ifndef _SNMPUNIXDOMAIN_H
  2. #define _SNMPUNIXDOMAIN_H
  3. #ifdef SNMP_TRANSPORT_UNIX_DOMAIN
  4. #ifdef __cplusplus
  5. extern          "C" {
  6. #endif
  7. #if HAVE_SYS_SOCKET_H
  8. #include <sys/socket.h>
  9. #endif
  10. #if HAVE_SYS_UN_H
  11. #include <sys/un.h>
  12. #endif
  13. #include <net-snmp/library/snmp_transport.h>
  14. #include <net-snmp/library/asn1.h>
  15. /*
  16.  * The SNMP over local socket transport domain is identified by
  17.  * transportDomainLocal as defined in RFC 3419.
  18.  */
  19. #define TRANSPORT_DOMAIN_LOCAL 1,3,6,1,2,1,100,1,13
  20. extern oid netsnmp_UnixDomain[];
  21. netsnmp_transport *netsnmp_unix_transport(struct sockaddr_un *addr,
  22.                                           int local);
  23. void netsnmp_unix_agent_config_tokens_register(void);
  24. void netsnmp_unix_parse_security(const char *token, char *param);
  25. int netsnmp_unix_getSecName(void *opaque, int olength,
  26.                             const char *community,
  27.                             size_t community_len, char **secName,
  28.                             char **contextName);
  29. /*
  30.  * "Constructor" for transport domain object.  
  31.  */
  32. void            netsnmp_unix_ctor(void);
  33. #ifdef __cplusplus
  34. }
  35. #endif
  36. #endif                          /*SNMP_TRANSPORT_UNIX_DOMAIN */
  37. #endif/*_SNMPUNIXDOMAIN_H*/