/** 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 |
---|---|---|---|
10 | 2013-12-06 06:56:25 | 63.27 | 93% |
8 | 2013-05-03 01:54:32 | 64.18 | 94% |
4 | 2013-05-03 01:48:09 | 57.81 | 91% |