| Server IP : 23.254.227.96 / Your IP : 216.73.216.183 Web Server : Apache/2.4.62 (Unix) OpenSSL/1.1.1k System : Linux hwsrv-1277026.hostwindsdns.com 4.18.0-477.13.1.el8_8.x86_64 #1 SMP Tue May 30 14:53:41 EDT 2023 x86_64 User : viralblo ( 1001) PHP Version : 8.1.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /proc/thread-self/root/usr/include/net-snmp/library/ |
Upload File : |
#ifndef _SNMPUNIXDOMAIN_H
#define _SNMPUNIXDOMAIN_H
#ifdef NETSNMP_TRANSPORT_UNIX_DOMAIN
#if defined(cygwin) || defined(mingw32) || defined(mingw32msvc)
config_error(Unix domain protocol support unavailable for this platform)
#endif
#if HAVE_SYS_SOCKET_H
#include <sys/socket.h>
#endif
#if HAVE_SYS_UN_H
#include <sys/un.h>
#endif
#include <net-snmp/library/snmp_transport.h>
config_require(SocketBase)
#ifdef __cplusplus
extern "C" {
#endif
/*
* The SNMP over local socket transport domain is identified by
* transportDomainLocal as defined in RFC 3419.
*/
#define TRANSPORT_DOMAIN_LOCAL 1,3,6,1,2,1,100,1,13
NETSNMP_IMPORT oid netsnmp_UnixDomain[];
netsnmp_transport *netsnmp_unix_transport(const struct sockaddr_un *addr,
int local);
void netsnmp_unix_agent_config_tokens_register(void);
void netsnmp_unix_parse_security(const char *token, char *param);
int netsnmp_unix_getSecName(void *opaque, int olength,
const char *community,
size_t community_len, const char **secName,
const char **contextName);
/*
* "Constructor" for transport domain object.
*/
void netsnmp_unix_ctor(void);
/*
* Support functions
*/
void netsnmp_unix_create_path_with_mode(int mode);
void netsnmp_unix_dont_create_path(void);
#ifdef __cplusplus
}
#endif
#else
#define netsnmp_unix_create_path_with_mode(x)
#define netsnmp_unix_dont_create_path()
#endif /*NETSNMP_TRANSPORT_UNIX_DOMAIN */
#endif/*_SNMPUNIXDOMAIN_H*/