lwres_net_ntop — lightweight resolver IP address presentation
#include <lwres/net.h>
const char *
lwres_net_ntop( |
int af, |
const void *src, | |
char *dst, | |
size_t size) ; |
lwres_net_ntop()
converts an IP address of protocol family
af
— IPv4 or IPv6 — at
location src
from network format to its
conventional representation as a string. For IPv4 addresses,
that string would be a dotted-decimal. An IPv6 address would be
represented in colon notation as described in RFC1884.
The generated string is copied to dst
provided
size
indicates it is long enough to
store the
ASCII representation of the address.