View Pit Stop page for race #3 by xlmax2lx — Ghost race
View profile for Max (xlmax2lx)
Official speed | 56.17 wpm (95.07 seconds elapsed during race) |
---|---|
Race Start | May 3, 2023 1:28:22am UTC |
Race Finish | May 3, 2023 1:29:57am UTC |
Outcome | No win (2 of 3) |
Accuracy | 97.0% |
Points | 53.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); } |