(sidd_)

Race #192

View Pit Stop page for race #192 by sidd_Ghost race

View profile for (sidd_)

Official speed 117.85 wpm (45.31 seconds elapsed during race)
Race Start December 28, 2019 1:31:42am UTC
Race Finish December 28, 2019 1:32:27am UTC
Outcome Win (1 of 3)
Opponents 2. jyin (76.80 wpm)
3. poem (75.14 wpm)
Accuracy 99.0%
Points 111.95
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); }