View Pit Stop page for race #12 by t111h — Ghost race
Official speed | 27.48 wpm (236.68 seconds elapsed during race) |
---|---|
Race Start | March 23, 2022 12:03:25am UTC |
Race Finish | March 23, 2022 12:07:22am UTC |
Outcome | No win (2 of 3) |
Accuracy | 94.0% |
Points | 40.76 |
Text | #10000 (Length: 542 characters) /* Read a set of characters from the socket */ StringBuffer command = new StringBuffer(); int expected = 1024; /* Cut off to avoid DoS attack */ while (expected < shutdown.length()) { if (random == null) random = new Random(System.currentTimeMillis()); expected += (random.nextInt() % 1024); } while (expected > 0) { int ch = -1; try { ch = stream.read(); } catch (IOException e) { log.warn("StandardServer.await: read: ", e); ch = -1; } if (ch < 32) /* Control character or EOF terminates loop break; command.append((char) ch); expected--; } |