tanon (tanon710s)

Race #80

View Pit Stop page for race #80 by tanon710sGhost race

View profile for tanon (tanon710s)

Official speed 84.19 wpm (63.43 seconds elapsed during race)
Race Start February 25, 2019 3:02:24pm UTC
Race Finish February 25, 2019 3:03:28pm UTC
Outcome No win (3 of 3)
Opponents 1. permil (105.78 wpm)
Accuracy 97.0%
Points 79.98
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); }