/** 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); }
Game | Time | WPM | Accuracy |
---|---|---|---|
22 | 2012-10-07 12:37:06 | 76.48 | 95% |
7 | 2012-10-07 12:18:21 | 77.87 | 96% |
6 | 2012-10-07 12:15:46 | 70.17 | 92% |
4 | 2012-10-07 12:12:25 | 64.56 | 93% |