View Pit Stop page for race #202 by landarian — Ghost race
Official speed | 80.76 wpm (66.12 seconds elapsed during race) |
---|---|
Race Start | April 4, 2020 8:40:38pm UTC |
Race Finish | April 4, 2020 8:41:45pm UTC |
Outcome | Win (1 of 2) |
Opponents |
2. bladevampirek (64.16 wpm) |
Accuracy | 97.0% |
Points | 76.72 |
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); } |