dns_resolver (dns_resolver)

Race #1

View Pit Stop page for race #1 by dns_resolverGhost race

View profile for dns_resolver (dns_resolver)

Official speed 46.05 wpm (115.96 seconds elapsed during race)
Race Start June 6, 2023 6:29:58pm UTC
Race Finish June 6, 2023 6:31:54pm UTC
Outcome Win (1 of 2)
Accuracy 96.0%
Points 43.75
Text #10001 (Length: 445 characters)

/** Loop waiting for a connection and a valid command */ while (true) { Socket socket = null; InputStream stream = null; try { socket = serverSocket.accept(); socket.setSoTimeout(10 * 1000); stream = socket.getInputStream(); } catch (AccessControlException ace) { log.warn("StandardServer.accept security exception: " + ace.getMessage(), ace); continue; } catch (IOException e) { log.error("StandardServer.await: accept: ", e); System.exit(1); }