1
0
mirror of https://github.com/moparisthebest/curl synced 2024-12-21 23:58:49 -05:00

Forgot to ares_-ize inet_ntop

This commit is contained in:
Dominick Meglio 2005-05-15 04:38:53 +00:00
parent 944af98be6
commit 028d78b993

View File

@ -70,16 +70,14 @@ static const char *inet_ntop6(const unsigned char *src, char *dst, size_t size);
* Paul Vixie, 1996. * Paul Vixie, 1996.
*/ */
const char * const char *
inet_ntop(int af, const void *src, char *dst, size_t size) ares_inet_ntop(int af, const void *src, char *dst, size_t size)
{ {
switch (af) { switch (af) {
case AF_INET: case AF_INET:
return (inet_ntop4(src, dst, size)); return (inet_ntop4(src, dst, size));
#ifdef INET6
case AF_INET6: case AF_INET6:
return (inet_ntop6(src, dst, size)); return (inet_ntop6(src, dst, size));
#endif
default: default:
errno = EAFNOSUPPORT; errno = EAFNOSUPPORT;
return (NULL); return (NULL);
@ -112,7 +110,6 @@ inet_ntop4(const unsigned char *src, char *dst, size_t size)
return (dst); return (dst);
} }
#ifdef INET6
/* const char * /* const char *
* inet_ntop6(src, dst, size) * inet_ntop6(src, dst, size)
* convert IPv6 binary address into presentation (printable) format * convert IPv6 binary address into presentation (printable) format
@ -205,6 +202,5 @@ inet_ntop6(const unsigned char *src, char *dst, size_t size)
strcpy(dst, tmp); strcpy(dst, tmp);
return (dst); return (dst);
} }
#endif
#endif #endif