static bool portResponding(S host, int port) { try { new Socket(host, port).close(); true; } catch { false; } }