aboutsummaryrefslogtreecommitdiff
path: root/nDPId.c
diff options
context:
space:
mode:
authorToni Uhlig <matzeton@googlemail.com>2024-10-26 11:19:05 +0200
committerToni Uhlig <matzeton@googlemail.com>2024-10-26 11:35:30 +0200
commit25944e2089d89830d630efae0e4c3042069f64f2 (patch)
tree29973ba92ace4789b2d9acfa913254404a175e3d /nDPId.c
parent542379726789720c569d7130567068f40d03ac6f (diff)
Fixed some SonarCloud issues
* fixed dependabot werkzeug (3.0.3 to 3.0.6) Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'nDPId.c')
-rw-r--r--nDPId.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/nDPId.c b/nDPId.c
index 6b070619e..eeebcbb6e 100644
--- a/nDPId.c
+++ b/nDPId.c
@@ -5551,6 +5551,15 @@ static int validate_options(void)
}
}
}
+ if (GET_CMDARG_ULL(nDPId_options.max_packets_per_flow_to_analyse) < 2 ||
+ GET_CMDARG_ULL(nDPId_options.max_packets_per_flow_to_analyse) > USHRT_MAX)
+ {
+ logger_early(1,
+ "Value not in range: 2 < max-packets-per-flow-to-analyse[%llu] < %d",
+ GET_CMDARG_ULL(nDPId_options.max_packets_per_flow_to_analyse),
+ USHRT_MAX);
+ retval = 1;
+ }
if (GET_CMDARG_ULL(nDPId_options.max_flows_per_thread) < 128 ||
GET_CMDARG_ULL(nDPId_options.max_flows_per_thread) > nDPId_MAX_FLOWS_PER_THREAD)
{