Function resolveHost
Resolves the given host name/IP address string.
NetworkAddress resolveHost
(
string host,
std .socket .AddressFamily address_family = cast(AddressFamily)0,
bool use_dns = true
) @safe;
NetworkAddress resolveHost
(
string host,
ushort address_family,
bool use_dns = true
) @safe;
Setting use_dns to false will only allow IP address strings but also guarantees that the call will not block.