(sidd_)

Race #74

View Pit Stop page for race #74 by sidd_Ghost race

View profile for (sidd_)

Official speed 101.62 wpm (52.55 seconds elapsed during race)
Race Start January 27, 2019 11:36:11pm UTC
Race Finish January 27, 2019 11:37:04pm UTC
Outcome Win (1 of 5)
Opponents 2. delirious (94.19 wpm)
3. styrofoam (73.00 wpm)
4. hellothen (61.61 wpm)
Accuracy 97.0%
Points 96.54
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); }