View Pit Stop page for race #27 by arc_sec — Ghost race
View profile for Vielle (arc_sec)
Official speed | 99.11 wpm (53.88 seconds elapsed during race) |
---|---|
Race Start | August 8, 2019 3:30:40am UTC |
Race Finish | August 8, 2019 3:31:34am UTC |
Outcome | Win (1 of 3) |
Opponents |
2. spondulix (83.37 wpm) 3. lesirh (76.90 wpm) |
Accuracy | 97.0% |
Points | 94.15 |
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); } |