Kevin (kvbx)

Race #11

View Pit Stop page for race #11 by kvbxGhost race

View profile for Kevin (kvbx)

Official speed 50.14 wpm (106.50 seconds elapsed during race)
Race Start November 26, 2017 6:39:22pm UTC
Race Finish November 26, 2017 6:41:09pm UTC
Outcome No win (2 of 3)
Accuracy 97.0%
Points 47.64
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); }