View Pit Stop page for race #6 by ness_20xx — Ghost race
View profile for Shirou (ness_20xx)
Official speed | 54.27 wpm (98.40 seconds elapsed during race) |
---|---|
Race Start | February 10, 2019 7:53:05pm UTC |
Race Finish | February 10, 2019 7:54:43pm UTC |
Outcome | No win (4 of 5) |
Opponents |
1. delirious (99.45 wpm) 2. jlachney (74.85 wpm) 3. poem (60.95 wpm) 5. hyper_racer (51.55 wpm) |
Accuracy | 93.0% |
Points | 51.56 |
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); } |