gethostbyaddr function winsock
The gethostbyaddr function retrieves the host information corresponding to a network address.
hostent* gethostbyaddr(
const char *addr,
int len,
int type
);
Implementation
Pointer<HOSTENT> gethostbyaddr(Pointer<Utf8> addr, int len, int type) =>
_gethostbyaddr(addr, len, type);