/** 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 |
|---|---|---|---|
| 19 | 2024-03-04 00:11:36 | 53.77 | 96.3% |
| 13 | 2024-02-22 06:01:02 | 48.84 | 96.3% |
| 10 | 2024-02-22 05:28:38 | 48.28 | 95.9% |