From 7e640e4e36b39e604bbb3b95cc59496f70f7e510 Mon Sep 17 00:00:00 2001 From: Victor Julien Date: Sat, 31 Aug 2024 09:18:03 -0400 Subject: [PATCH] packetpool: allow larger max-pending-packets Original limit was due to a specific data structure. (lifted from 96a0ffadde9bc1967d2cc9bfbeebe921c882e9b0) --- plugins/napatech/source-napatech.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/napatech/source-napatech.c b/plugins/napatech/source-napatech.c index 5a5b40ed7472..3b1d8d728abc 100644 --- a/plugins/napatech/source-napatech.c +++ b/plugins/napatech/source-napatech.c @@ -48,7 +48,7 @@ #include #include -extern uint16_t max_pending_packets; +extern uint32_t max_pending_packets; typedef struct NapatechThreadVars_ { ThreadVars *tv;