View Pit Stop page for race #3 by 123any — Ghost race
View profile for samia (123any)
Official speed | 24.20 wpm (220.66 seconds elapsed during race) |
---|---|
Race Start | May 25, 2023 11:08:51am UTC |
Race Finish | May 25, 2023 11:12:31am UTC |
Outcome | No win (4 of 4) |
Opponents |
2. emon253 (25.17 wpm) |
Accuracy | 95.0% |
Points | 22.99 |
Text | #10001 (Length: 445 characters) /** 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); } |