Rahul (jet_blazer)

Race #42

View Pit Stop page for race #42 by jet_blazerGhost race

View profile for Rahul (jet_blazer)

Official speed 44.65 wpm (119.60 seconds elapsed during race)
Race Start August 19, 2012 9:05:40pm UTC
Race Finish August 19, 2012 9:07:40pm UTC
Outcome No win (1 of 1)
Opponents 2. llama_lord (37.68 wpm)
Accuracy 96.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); }