View Pit Stop page for race #3 by nessa2 — Ghost race
View profile for Fátima (nessa2)
Official speed | 23.67 wpm (225.60 seconds elapsed during race) |
---|---|
Race Start | June 2, 2025 12:33:30am UTC |
Race Finish | June 2, 2025 12:37:16am UTC |
Outcome | No win (11 of 16) |
Opponents |
7. tocsky (28.45 wpm) 10. pedro_serrudo (25.49 wpm) 12. jhulmab (23.62 wpm) 15. sarai_vega012 (21.56 wpm) |
Accuracy | 95.0% |
Points | 22.49 |
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); } |