/* 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--; }
Game | Time | WPM | Accuracy |
---|---|---|---|
112 | 2021-07-17 07:10:38 | 52.49 | 97% |
85 | 2021-07-08 11:49:04 | 58.19 | 97% |
52 | 2021-07-05 13:23:21 | 52.85 | 98% |
19 | 2021-06-30 16:06:07 | 54.24 | 97% |