Ling (obsolescencel)

Race #3

View Pit Stop page for race #3 by obsolescencelGhost race

View profile for Ling (obsolescencel)

Official speed 36.31 wpm (147.07 seconds elapsed during race)
Race Start October 13, 2018 3:41:12pm UTC
Race Finish October 13, 2018 3:43:39pm UTC
Outcome No win (2 of 2)
Opponents 1. kybconnor (42.40 wpm)
Accuracy 95.0%
Points 34.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); }