View Pit Stop page for race #719 by shiruzu — Ghost race
View profile for Lydia (shiruzu)
Official speed | 80.63 wpm (66.23 seconds elapsed during race) |
---|---|
Race Start | May 23, 2025 3:30:10pm UTC |
Race Finish | May 23, 2025 3:31:17pm UTC |
Outcome | No win (3 of 3) |
Accuracy | 99.0% |
Points | 76.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); } |