View Pit Stop page for race #42 by spondulix — Ghost race
View profile for spondunoob (spondulix)
Official speed | 84.24 wpm (63.39 seconds elapsed during race) |
---|---|
Race Start | July 20, 2019 8:41:31pm UTC |
Race Finish | July 20, 2019 8:42:35pm UTC |
Outcome | No win (2 of 3) |
Opponents |
1. mako640 (124.40 wpm) 3. storm (74.46 wpm) |
Accuracy | 97.0% |
Points | 80.03 |
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); } |