Aung Myat (aungmyathein)

Race #1

View Pit Stop page for race #1 by aungmyatheinGhost race

View profile for Aung Myat (aungmyathein)

Official speed 44.45 wpm (120.13 seconds elapsed during race)
Race Start March 16, 2023 10:27:26am UTC
Race Finish March 16, 2023 10:29:26am UTC
Outcome No win (2 of 3)
Accuracy 97.0%
Points 42.23
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); }