Omar (obaqueiro)

Race #12

View Pit Stop page for race #12 by obaqueiroGhost race

View profile for Omar (obaqueiro)

Official speed 66.67 wpm (80.10 seconds elapsed during race)
Race Start March 20, 2020 12:50:38am UTC
Race Finish March 20, 2020 12:51:58am UTC
Outcome No win (2 of 5)
Accuracy 97.0%
Points 63.34
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); }