View Pit Stop page for race #2 by jhosmar_carlos — Ghost race
View profile for jhosmar (jhosmar_carlos)
Official speed | 36.60 wpm (145.90 seconds elapsed during race) |
---|---|
Race Start | June 1, 2025 12:18:44am UTC |
Race Finish | June 1, 2025 12:21:10am UTC |
Outcome | Win (1 of 17) |
Opponents |
12. priscilacervantes23 (22.89 wpm) 15. iverjoel (19.24 wpm) |
Accuracy | 92.0% |
Points | 34.77 |
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); } |