From: Victor Julien Date: Sat, 31 Aug 2024 13:18:03 +0000 (-0400) Subject: packetpool: allow larger max-pending-packets X-Git-Tag: suricata-8.0.0-beta1~807 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1591ad4408a68f86b4c928ed33993a64686ba637;p=thirdparty%2Fsuricata.git packetpool: allow larger max-pending-packets Original limit was due to a specific data structure. (lifted from 96a0ffadde9bc1967d2cc9bfbeebe921c882e9b0) --- diff --git a/plugins/napatech/source-napatech.c b/plugins/napatech/source-napatech.c index 5a5b40ed74..3b1d8d728a 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;