Kevin (kvbx)

Race #9

View Pit Stop page for race #9 by kvbxGhost race

View profile for Kevin (kvbx)

Official speed 48.72 wpm (109.61 seconds elapsed during race)
Race Start November 26, 2017 6:34:48pm UTC
Race Finish November 26, 2017 6:36:38pm UTC
Outcome No win (2 of 3)
Accuracy 97.0%
Points 46.28
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); }