View Pit Stop page for race #29 by porfiriomarquez — Ghost race
View profile for porfiriomarquez (porfiriomarquez)
Official speed | 13.79 wpm (387.24 seconds elapsed during race) |
---|---|
Race Start | June 11, 2025 6:01:47pm UTC |
Race Finish | June 11, 2025 6:08:14pm UTC |
Outcome | No win (3 of 3) |
Accuracy | 95.0% |
Points | 13.10 |
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); } |