police (styrofoam)

Race #53

View Pit Stop page for race #53 by styrofoamGhost race

View profile for police (styrofoam)

Official speed 75.29 wpm (70.93 seconds elapsed during race)
Race Start October 31, 2018 11:29:53pm UTC
Race Finish October 31, 2018 11:31:04pm UTC
Outcome Win (1 of 2)
Opponents 2. atthetop (72.45 wpm)
Accuracy 97.0%
Points 71.52
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); }