Looks up a host entry by its network address.
#include <prnetdb.h> PRStatus PR_GetHostByAddr( const PRNetAddr *hostaddr, char *buf, PRIntn bufsize, PRHostEnt *hostentry);
The function has the following parameters:
hostaddr
buf
hostentry
structure point to data saved in this buffer. This buffer is referenced by the runtime during a call to PR_EnumerateHostEnt
.bufsize
buf
parameter. The buffer must be at least PR_NETDB_BUF_SIZE
bytes.hostentry
PR_SUCCESS
.The function returns one of the following values:
PR_SUCCESS
.PR_FAILURE
. You can retrieve the reason for the failure by calling PR_GetError
.PR_GetHostByAddr
is used to perform reverse lookups of network addresses. That is, given a valid network address (of type PRNetAddr
), PR_GetHostByAddr
discovers the address' primary name, any aliases, and any other network addresses for the same host.