View Pit Stop page for race #3 by jasssel — Ghost race
View profile for jaselsss (jasssel)
Official speed | 38.29 wpm (139.46 seconds elapsed during race) |
---|---|
Race Start | June 6, 2025 1:50:48am UTC |
Race Finish | June 6, 2025 1:53:07am UTC |
Outcome | No win (2 of 17) |
Opponents |
6. tocsky (32.04 wpm) 11. liz_mariela (28.01 wpm) 12. machuran3 (26.55 wpm) 13. pedro_serrudo (25.88 wpm) 14. sarai_vega012 (24.93 wpm) 15. jhulmab (23.48 wpm) |
Accuracy | 94.0% |
Points | 36.37 |
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); } |