les latinas c'est toute la nuit (andreaak00)

Race #11

View Pit Stop page for race #11 by andreaak00Ghost race

View profile for les latinas c'est toute la nuit (andreaak00)

Official speed 77.87 wpm (68.58 seconds elapsed during race)
Race Start March 24, 2018 1:36:13pm UTC
Race Finish March 24, 2018 1:37:22pm UTC
Outcome Win (1 of 2)
Opponents 2. zalfredo (64.94 wpm)
Accuracy 97.0%
Points 73.98
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); }