From 2cbe06c7fa6b1592b4f186af4cb00b2ea0dd916d Mon Sep 17 00:00:00 2001 From: Christian Giese Date: Tue, 12 Apr 2022 15:36:05 +0200 Subject: [PATCH] change IO defaults + 1ms rx/tx interval + 4096 IO slots --- code/bngblaster/src/bbl_config.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/bngblaster/src/bbl_config.c b/code/bngblaster/src/bbl_config.c index 8c1fe154..a675ee5f 100644 --- a/code/bngblaster/src/bbl_config.c +++ b/code/bngblaster/src/bbl_config.c @@ -2174,9 +2174,9 @@ bbl_config_init_defaults (bbl_ctx_s *ctx) { ctx->pcap.include_streams = true; ctx->config.username = g_default_user; ctx->config.password = g_default_pass; - ctx->config.tx_interval = 5 * MSEC; - ctx->config.rx_interval = 5 * MSEC; - ctx->config.io_slots = 1024; + ctx->config.tx_interval = 1 * MSEC; + ctx->config.rx_interval = 1 * MSEC; + ctx->config.io_slots = 4096; ctx->config.io_stream_max_ppi = 32; ctx->config.qdisc_bypass = true; ctx->config.sessions = 1;