pub unsafe extern "C" fn zts_inet_ntop(
family: c_int,
src: *const c_void,
dst: *mut c_char,
size: zts_socklen_t,
) -> *const c_charExpand description
Convert IPv4 and IPv6 address structures to human-readable text form.
@param family Address family: ZTS_AF_INET or ZTS_AF_INET6
@param src Pointer to source address structure
@param dst Pointer to destination character array
@param size Size of the destination buffer
@return On success, returns a non-null pointer to the destination character
array