/** 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 |
---|---|---|---|
13 | 2025-07-11 20:11:44 | 37.78 | 91% |
7 | 2025-07-11 19:58:53 | 39.03 | 92% |
5 | 2025-07-11 19:55:14 | 39.95 | 93% |