mirror of
https://frontier.innolan.net/rainlance/c-ares.git
synced 2025-11-20 01:53:14 +00:00
inet_ntop.c: s/socklen_t/ares_socklen_t
This commit is contained in:
@ -195,11 +195,14 @@ inet_ntop6(const unsigned char *src, char *dst, size_t size)
|
||||
strcpy(dst, tmp);
|
||||
return (dst);
|
||||
}
|
||||
|
||||
#else /* HAVE_INET_NTOP */
|
||||
|
||||
const char *ares_inet_ntop(int af, const void *src, char *dst, socklen_t size)
|
||||
const char *
|
||||
ares_inet_ntop(int af, const void *src, char *dst, ares_socklen_t size)
|
||||
{
|
||||
/* just relay this to the underlying function */
|
||||
return inet_ntop(af, src, dst, size);
|
||||
}
|
||||
|
||||
#endif /* HAVE_INET_NTOP */
|
||||
|
||||
Reference in New Issue
Block a user