Դավիթ (seyranyandavid)

Race #1471

View Pit Stop page for race #1471 by seyranyandavidGhost race

View profile for Դավիթ (seyranyandavid)

Official speed 75.80 wpm (70.45 seconds elapsed during race)
Race Start May 21, 2022 4:22:45pm UTC
Race Finish May 21, 2022 4:23:55pm UTC
Outcome Win (1 of 3)
Accuracy 98.0%
Points 72.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); }