/* 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 |
---|---|---|---|
86 | 2024-08-16 07:11:56 | 52.90 | 97.2% |
64 | 2024-08-14 21:47:30 | 45.15 | 96.8% |
47 | 2024-08-14 15:37:54 | 39.03 | 96.7% |
45 | 2024-08-14 15:23:17 | 48.30 | 97.4% |
36 | 2024-08-14 12:55:49 | 47.03 | 95.9% |
18 | 2024-08-14 12:19:24 | 40.91 | 96.3% |
15 | 2024-08-14 12:13:12 | 47.35 | 97.6% |