View Pit Stop page for race #3 by scarwpm — Ghost race
View profile for Innominate (scarwpm)
Official speed | 39.32 wpm (135.81 seconds elapsed during race) |
---|---|
Race Start | December 25, 2021 1:01:22pm UTC |
Race Finish | December 25, 2021 1:03:38pm UTC |
Outcome | No win (2 of 2) |
Opponents |
1. gospell (60.16 wpm) |
Accuracy | 95.0% |
Points | 37.36 |
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); } |