View Pit Stop page for race #8 by ahmlmh — Ghost race
View profile for Ali Hassaan (ahmlmh)
Official speed | 42.20 wpm (126.54 seconds elapsed during race) |
---|---|
Race Start | December 20, 2012 11:02:10am UTC |
Race Finish | December 20, 2012 11:04:16am UTC |
Outcome | No win (3 of 3) |
Opponents |
1. smtchahal (64.22 wpm) 2. mylove4u (58.70 wpm) |
Accuracy | 85.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); } |