Resolve a host name and port to an IP address in network form.
Defined in <SDL_net.h>
int SDLNet_ResolveHost(IPaddress *address, const char *host, Uint16 port);
IPaddress * | address | to be filled in with the resolved address and port. |
const char * | host | the hostname to lookup (like "libsdl.org"). |
Uint16 | port | the port intended to be connected to, to fill into address. |
(int) Returns zero on success, -1 on error.
If host
is NULL, the resolved host will be set to INADDR_ANY
.
If the host couldn't be resolved, the host portion of the returned address will be INADDR_NONE, and the function will return -1.
This function is available since SDL_net 2.0.0.