SLSL (slslz)

Race #3

View Pit Stop page for race #3 by slslzGhost race

View profile for SLSL (slslz)

Official speed 51.19 wpm (104.32 seconds elapsed during race)
Race Start May 23, 2023 8:57:07am UTC
Race Finish May 23, 2023 8:58:51am UTC
Outcome No win (2 of 2)
Opponents 1. 3agwa_79 (56.63 wpm)
Accuracy 95.0%
Points 48.63
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); }