dockit (dockit)

Race #3

View Pit Stop page for race #3 by dockitGhost race

View profile for dockit (dockit)

Official speed 64.63 wpm (82.62 seconds elapsed during race)
Race Start June 3, 2023 6:42:44pm UTC
Race Finish June 3, 2023 6:44:06pm UTC
Outcome Win (1 of 3)
Accuracy 95.0%
Points 61.40
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); }