View Pit Stop page for race #44 by crazy_typeracer — Ghost race
View profile for Vishnu (crazy_typeracer)
Official speed | 44.98 wpm (118.72 seconds elapsed during race) |
---|---|
Race Start | January 9, 2023 4:00:43pm UTC |
Race Finish | January 9, 2023 4:02:42pm UTC |
Outcome | No win (3 of 3) |
Accuracy | 95.0% |
Points | 42.73 |
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); } |