leon (leonzalion)

Race #42

View Pit Stop page for race #42 by leonzalionGhost race

View profile for leon (leonzalion)

Official speed 117.19 wpm (45.57 seconds elapsed during race)
Race Start August 1, 2021 7:46:51pm UTC
Race Finish August 1, 2021 7:47:36pm UTC
Outcome No win (1 of 1)
Accuracy 99.0%
Points 111.33
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); }