View Pit Stop page for race #22 by priscilacervantes23 — Ghost race
View profile for priscila (priscilacervantes23)
Official speed | 25.48 wpm (209.58 seconds elapsed during race) |
---|---|
Race Start | June 1, 2025 12:25:41am UTC |
Race Finish | June 1, 2025 12:29:11am UTC |
Outcome | No win (12 of 17) |
Opponents |
1. jhosmar_carlos (36.89 wpm) 15. iverjoel (19.95 wpm) |
Accuracy | 93.0% |
Points | 24.21 |
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); } |