Looks up a host by name.
#include <prnetdb.h> PRStatus PR_GetHostByName( const char *hostname, char *buf, PRIntn bufsize, PRHostEnt *hostentry);
The function has the following parameters:
hostname
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
.