aboutsummaryrefslogtreecommitdiff
path: root/nDPId.c
diff options
context:
space:
mode:
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)
{