kadomaniac (big_time_snail)

Race #81

View Pit Stop page for race #81 by big_time_snailGhost race

View profile for kadomaniac (big_time_snail)

Official speed 55.38 wpm (96.42 seconds elapsed during race)
Race Start July 6, 2019 10:51:27am UTC
Race Finish July 6, 2019 10:53:03am UTC
Outcome Win (1 of 3)
Accuracy 99.0%
Points 52.61
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); }