View Pit Stop page for race #2 by waldoibarra — Ghost race
View profile for Waldo (waldoibarra)
Official speed | 44.28 wpm (120.60 seconds elapsed during race) |
---|---|
Race Start | May 3, 2019 10:55:51pm UTC |
Race Finish | May 3, 2019 10:57:52pm UTC |
Outcome | No win (3 of 4) |
Accuracy | 94.0% |
Points | 42.07 |
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); } |