Biffer buffers, more aggressive tests

This commit is contained in:
Ian Gulliver
2026-04-11 21:32:50 +09:00
parent 59d67c740c
commit 8b69917e1d
2 changed files with 4 additions and 4 deletions

View File

@@ -239,11 +239,11 @@ static void start_ping_rate(const responder& resp, uint16_t target,
}
static void test_ping_rate(const responder& resp) {
start_ping_rate(resp, 8192, 0, 2);
start_ping_rate(resp, 8192, 0, 8);
}
static void test_ping_rate_1k(const responder& resp) {
start_ping_rate(resp, 1024, 1024, 2);
start_ping_rate(resp, 2048, 1024, 8);
}
using sync_test_fn = ResponseTest (*)(const responder&);