chaotic_iak (chaotic_iak)

Race #6

View Pit Stop page for race #6 by chaotic_iakGhost race

View profile for chaotic_iak (chaotic_iak)

Official speed 72.32 wpm (73.84 seconds elapsed during race)
Race Start March 14, 2014 12:39:19pm UTC
Race Finish March 14, 2014 12:40:33pm UTC
Outcome No win (2 of 2)
Opponents 1. nathanajah (97.76 wpm)
Accuracy 92.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); }