View Pit Stop page for race #2 by jasssel — Ghost race
View profile for jaselsss (jasssel)
Official speed | 40.64 wpm (131.40 seconds elapsed during race) |
---|---|
Race Start | June 6, 2025 1:45:41am UTC |
Race Finish | June 6, 2025 1:47:53am UTC |
Outcome | Win (1 of 16) |
Opponents |
6. tocsky (30.90 wpm) 9. pedro_serrudo (25.77 wpm) 10. liz_mariela (25.43 wpm) 11. jhulmab (24.58 wpm) 12. sarai_vega012 (23.98 wpm) |
Accuracy | 94.0% |
Points | 38.60 |
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); } |