/* 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 |
---|---|---|---|
88 | 2025-01-06 17:56:54 | 36.85 | 95.1% |
55 | 2024-12-13 11:24:46 | 32.00 | 93.4% |
34 | 2024-03-28 06:07:17 | 25.60 | 92.5% |
21 | 2024-01-18 06:30:13 | 28.82 | 93.8% |
9 | 2024-01-12 05:26:47 | 23.93 | 91.3% |