PR_GetAddrInfoByName
Looks up a host by name. Equivalent to getaddrinfo(host, NULL, ...)
of RFC 3493.
Syntax
#include <prnetdb.h>
PRAddrInfo *PR_GetAddrInfoByName(
const char *hostname,
PRUint16 af,
PRIntn flags);
Parameters
The function has the following parameters:
hostnameThe character string defining the host name of interest.
afThe address family. May be
PR_AF_UNSPECorPR_AF_INET.flagsMay be either
PR_AI_ADDRCONFIGorPR_AI_ADDRCONFIG | PR_AI_NOCANONNAME. IncludePR_AI_NOCANONNAMEto suppress the determination of the canonical name corresponding tohostname
Returns
The function returns one of the following values:
If successful, a pointer to the opaque
PRAddrInfostructure containing the results of the host lookup. Use PR_EnumerateAddrInfo to inspect the PRNetAddr values stored in this structure. When no longer needed, this pointer must be destroyed with a call to PR_FreeAddrInfo.If unsuccessful,
NULL. You can retrieve the reason for the failure by calling PR_GetError.