View Pit Stop page for race #27 by paraphrohn — Ghost race
View profile for paraph (paraphrohn)
Official speed | 91.89 wpm (58.11 seconds elapsed during race) |
---|---|
Race Start | February 25, 2019 2:13:11pm UTC |
Race Finish | February 25, 2019 2:14:09pm UTC |
Outcome | No win (2 of 2) |
Opponents |
1. permil (98.91 wpm) |
Accuracy | 98.0% |
Points | 87.30 |
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); } |