maerih (maerih)

Race #190

View Pit Stop page for race #190 by maerihGhost race

View profile for maerih (maerih)

Official speed 42.85 wpm (124.62 seconds elapsed during race)
Race Start June 13, 2025 2:50:54pm UTC
Race Finish June 13, 2025 2:52:58pm UTC
Outcome Win (1 of 3)
Accuracy 94.0%
Points 40.71
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); }