/* 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 |
---|---|---|---|
106 | 2025-06-28 01:56:59 | 45.16 | 93% |
77 | 2025-06-26 00:30:43 | 41.08 | 93% |
73 | 2025-06-26 00:13:27 | 38.57 | 92% |
54 | 2025-05-29 01:33:58 | 35.05 | 92% |
27 | 2025-05-22 23:38:17 | 38.23 | 92% |
19 | 2025-05-22 01:29:53 | 30.81 | 92% |
12 | 2025-05-21 18:39:48 | 34.53 | 91% |