TheDufferr (rolls_royce007)

Race #9

View Pit Stop page for race #9 by rolls_royce007Ghost race

View profile for TheDufferr (rolls_royce007)

Official speed 31.60 wpm (168.99 seconds elapsed during race)
Race Start August 17, 2021 12:07:05pm UTC
Race Finish August 17, 2021 12:09:54pm UTC
Outcome No win (2 of 3)
Accuracy 93.0%
Points 30.02
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); }