sat (sat128)

Race #3

View Pit Stop page for race #3 by sat128Ghost race

View profile for sat (sat128)

Official speed 30.32 wpm (176.12 seconds elapsed during race)
Race Start June 8, 2023 1:23:04pm UTC
Race Finish June 8, 2023 1:26:00pm UTC
Outcome No win (1 of 1)
Accuracy 94.0%
Points 28.81
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); }