static S hostToIP(S host) ctex { for (InetAddress a : InetAddress.getAllByName(host)) { S ip = a.getHostAddress(); if (isIPv4(ip)) ret ip; // yep we're still on v4 } fail("No IP address found for " + host); }