police (styrofoam)

Race #170

View Pit Stop page for race #170 by styrofoamGhost race

View profile for police (styrofoam)

Official speed 73.00 wpm (73.15 seconds elapsed during race)
Race Start January 27, 2019 11:36:11pm UTC
Race Finish January 27, 2019 11:37:24pm UTC
Outcome No win (3 of 5)
Opponents 1. sidd_ (101.62 wpm)
2. delirious (94.19 wpm)
4. hellothen (61.61 wpm)
Accuracy 95.0%
Points 69.35
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); }