(sura5)

Race #9

View Pit Stop page for race #9 by sura5Ghost race

View profile for (sura5)

Official speed 66.84 wpm (79.89 seconds elapsed during race)
Race Start December 7, 2021 12:18:07pm UTC
Race Finish December 7, 2021 12:19:27pm UTC
Outcome Win (1 of 5)
Opponents 2. scraex (66.62 wpm)
3. peaceinchrist (63.62 wpm)
4. dindondoe (58.84 wpm)
Accuracy 94.0%
Points 63.50
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); }