The GetHostByName method retrieves host information corresponding to a host name. This method is similar to the Winsock gethostbyname function.
HRESULT GetHostByName( [in] const char* name, [out] char* buf, [in, out] int* buflen );
Pointer to a null-terminated string that specifies the name of the host. UTF-8 encoding is expected in this parameter.
Pointer to the data area to receive the hostent data. The data area must be larger than the size of a hostent structure because the supplied data area is used by Windows Sockets to contain a hostent structure and all of the data referenced by members of the hostent structure. A buffer of MAXGETHOSTSTRUCT bytes is recommended. The strings returned in the structure are encoded using the current system ANSI code page (ACP).
On input, specifies the size of data area for the buf parameter. If the buffer is too small, the error code HRESULT_FROM_WIN32(ERROR_INSUFFICIENT_BUFFER) is returned and the buflen parameter receives the size of the required buffer.
Success, the buffer was filled with the host information.
Insufficient buffer space was provided. That is, the buffer pointed to by the buf parameter is not large enough to contain the host information. For more information, see the description of the buflen parameter.
The name specified could not be found in the relevant database.
No response was received from an authoritative server.
The name specified is valid and was found in the database, but no information of the type requested is associated with it.
Unlike the IFWXSession::GetHostByName method, this method does not check permissions or policy rules, does not log the name resolution, and cannot use autodial to dial out for the name resolution.
Server | Requires Windows Server 2008. |
---|---|
Version | Requires Forefront Threat Management Gateway (TMG). |
Header |
Declared in Wspfwext.idl. |
DLL |
Requires Wspsrv.exe. |
IFWXFirewall
IFWXSession::GetHostByName
Send comments about this topic to Microsoft
Build date: 11/30/2009
© 2008 Microsoft Corporation. All rights reserved.