View Pit Stop page for race #1 by argyrwnt — Ghost race
View profile for argyrw not steno real wpm (argyrwnt)
Official speed | 24.08 wpm (221.76 seconds elapsed during race) |
---|---|
Race Start | February 3, 2019 5:06:17pm UTC |
Race Finish | February 3, 2019 5:09:59pm UTC |
Outcome | No win (3 of 3) |
Accuracy | 90.0% |
Points | 22.88 |
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); } |