View Pit Stop page for race #1 by ghrey303 — Ghost race
View profile for ghrey (ghrey303)
Official speed | 58.09 wpm (91.93 seconds elapsed during race) |
---|---|
Race Start | August 10, 2023 2:40:07am UTC |
Race Finish | August 10, 2023 2:41:39am UTC |
Outcome | Win (1 of 3) |
Opponents |
2. frostyinfinitum (36.54 wpm) 4. bluuefuzzy (32.74 wpm) |
Accuracy | 96.0% |
Points | 55.18 |
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); } |