View Pit Stop page for race #3 by kybconnor — Ghost race
View profile for Ronnoc (kybconnor)
Official speed | 42.40 wpm (125.94 seconds elapsed during race) |
---|---|
Race Start | October 13, 2018 3:41:12pm UTC |
Race Finish | October 13, 2018 3:43:18pm UTC |
Outcome | Win (1 of 2) |
Opponents |
2. obsolescencel (36.31 wpm) |
Accuracy | 94.0% |
Points | 40.28 |
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); } |