View Pit Stop page for race #26 by luis_univ — Ghost race
View profile for Luis Alberto Delgado Pinto (luis_univ)
Official speed | 31.68 wpm (168.56 seconds elapsed during race) |
---|---|
Race Start | September 10, 2025 9:57:19pm UTC |
Race Finish | September 10, 2025 10:00:08pm UTC |
Outcome | No win (2 of 9) |
Opponents |
1. manu_233 (36.95 wpm) 3. souljin99 (28.53 wpm) |
Accuracy | 97.0% |
Points | 30.10 |
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); } |