Userzin (userzin)

Race #33

View Pit Stop page for race #33 by userzinGhost race

View profile for Userzin (userzin)

Official speed 60.84 wpm (87.77 seconds elapsed during race)
Race Start November 20, 2021 11:17:02pm UTC
Race Finish November 20, 2021 11:18:30pm UTC
Outcome No win (3 of 4)
Accuracy 95.0%
Points 57.80
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); }