View Pit Stop page for race #156 by sidd_ — Ghost race
Official speed | 105.66 wpm (50.54 seconds elapsed during race) |
---|---|
Race Start | July 20, 2019 5:05:05pm UTC |
Race Finish | July 20, 2019 5:05:55pm UTC |
Outcome | Win (1 of 2) |
Opponents |
2. storm (65.91 wpm) 3. hyper_racer (55.43 wpm) |
Accuracy | 97.0% |
Points | 100.38 |
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); } |