Server IP : 23.254.227.96 / Your IP : 216.73.216.46 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 : /usr/include/net-snmp/library/ |
Upload File : |
/* IPV4 base transport support functions */ #ifndef SNMPIPV4BASE_H #define SNMPIPV4BASE_H #if HAVE_NETINET_IN_H #include <netinet/in.h> #endif #include <net-snmp/library/snmp_transport.h> #ifdef __cplusplus extern "C" { #endif /* * Prototypes */ char *netsnmp_ipv4_fmtaddr(const char *prefix, netsnmp_transport *t, const void *data, int len); void netsnmp_ipv4_get_taddr(struct netsnmp_transport_s *t, void **addr, size_t *addr_len); int netsnmp_ipv4_ostring_to_sockaddr(struct sockaddr_in *sin, const void *o, size_t o_len); /* * Convert a "traditional" peername into a sockaddr_in structure which is * written to *addr_ Returns 1 if the conversion was successful, or 0 if it * failed */ int netsnmp_sockaddr_in(struct sockaddr_in *addr, const char *peername, int remote_port); int netsnmp_sockaddr_in2(struct sockaddr_in *addr, const char *inpeername, const char *default_target); #ifdef __cplusplus } #endif #endif /* SNMPIPV4BASE_H */