VormX (_vormx_)

Race #6

View Pit Stop page for race #6 by _vormx_Ghost race

View profile for VormX (_vormx_)

Official speed 56.60 wpm (94.35 seconds elapsed during race)
Race Start November 20, 2017 1:29:47am UTC
Race Finish November 20, 2017 1:31:21am UTC
Outcome Win (1 of 3)
Accuracy 97.0%
Points 53.77
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); }