SalmanMKC (hellothen)

Race #133

View Pit Stop page for race #133 by hellothenGhost race

View profile for SalmanMKC (hellothen)

Official speed 64.22 wpm (83.15 seconds elapsed during race)
Race Start February 6, 2019 12:53:25pm UTC
Race Finish February 6, 2019 12:54:48pm UTC
Outcome No win (3 of 3)
Accuracy 94.0%
Points 61.01
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); }