Silver (psilverfish)

Race #1

View Pit Stop page for race #1 by psilverfishGhost race

View profile for Silver (psilverfish)

Official speed 32.86 wpm (162.51 seconds elapsed during race)
Race Start April 13, 2023 8:37:24pm UTC
Race Finish April 13, 2023 8:40:06pm UTC
Outcome No win (3 of 3)
Accuracy 94.0%
Points 31.22
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); }