View Pit Stop page for race #51 by nessa2 — Ghost race
View profile for Fátima (nessa2)
Official speed | 27.17 wpm (196.54 seconds elapsed during race) |
---|---|
Race Start | June 30, 2025 1:56:16am UTC |
Race Finish | June 30, 2025 1:59:32am UTC |
Outcome | No win (4 of 4) |
Opponents |
3. sharick_chungara (31.01 wpm) |
Accuracy | 94.0% |
Points | 25.81 |
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); } |