/** 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 |
---|---|---|---|
22 | 2024-02-18 05:59:06 | 35.29 | 94% |
7 | 2024-02-05 15:42:22 | 38.52 | 96% |
5 | 2024-02-05 15:36:07 | 36.75 | 96.3% |