/** 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 |
|---|---|---|---|
| 75 | 2024-07-29 18:55:24 | 32.87 | 91.1% |
| 31 | 2024-01-31 22:55:58 | 36.01 | 92.4% |
| 22 | 2024-01-31 01:54:41 | 30.04 | 90.9% |
| 15 | 2024-01-30 17:31:30 | 30.21 | 91.3% |