gethostbyaddr function winsock

Pointer<HOSTENT> gethostbyaddr(
  1. Pointer<Utf8> addr,
  2. int len,
  3. int type
)

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);