/** 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 |
---|---|---|---|
47 | 2020-04-08 08:58:33 | 49.49 | 94% |
33 | 2020-03-18 03:31:03 | 51.21 | 94% |
24 | 2020-01-19 14:58:37 | 46.68 | 95% |
11 | 2020-01-03 15:27:44 | 45.95 | 96% |