View Pit Stop page for race #4 by gbonell — Ghost race
View profile for Gerardo (gbonell)
Official speed | 36.57 wpm (146.02 seconds elapsed during race) |
---|---|
Race Start | May 17, 2016 10:33:48pm UTC |
Race Finish | May 17, 2016 10:36:14pm UTC |
Outcome | No win (5 of 10) |
Opponents |
1. marliseu (52.77 wpm) 3. adalwulf (45.56 wpm) 6. henrym0503 (34.63 wpm) 8. abielr (34.34 wpm) 9. gustxw (32.17 wpm) |
Accuracy | 94.0% |
Points | 0.00 |
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); } |