(delirious)

Race #59

View Pit Stop page for race #59 by deliriousGhost race

View profile for (delirious)

Official speed 89.57 wpm (59.62 seconds elapsed during race)
Race Start February 10, 2019 7:47:59pm UTC
Race Finish February 10, 2019 7:48:59pm UTC
Outcome No win (2 of 6)
Opponents 1. sidd_ (119.66 wpm)
3. jlachney (74.31 wpm)
4. poem (64.40 wpm)
Accuracy 98.0%
Points 85.09
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); }