/** 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 |
---|---|---|---|
31 | 2019-12-04 17:28:14 | 116.19 | 98% |
23 | 2018-11-23 21:59:09 | 118.88 | 98% |
12 | 2018-11-03 23:21:16 | 108.40 | 98% |