aboutsummaryrefslogtreecommitdiff
path: root/nDPId.c
diff options
context:
space:
mode:
authorToni Uhlig <matzeton@googlemail.com>2023-11-20 13:40:48 +0100
committerToni Uhlig <matzeton@googlemail.com>2023-11-20 13:40:48 +0100
commitfa7e76cc75a0963aef806e5e32a83fbb861bf0f6 (patch)
tree37a25cb5822f2c5dff5429581d72116653e98040 /nDPId.c
parentb0c343a7958570bc656cf980301bcf73dc62b3b6 (diff)
Fixed SonarCloud complaints.
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'nDPId.c')
-rw-r--r--nDPId.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/nDPId.c b/nDPId.c
index 01cee1c5f..5283a01d3 100644
--- a/nDPId.c
+++ b/nDPId.c
@@ -54,8 +54,8 @@
#define DLT_DSA_TAG_EDSA 285
#endif
-#if ((NDPI_MAJOR == 4 && NDPI_MINOR < 7) || NDPI_MAJOR < 4) && NDPI_API_VERSION < 7001
-#error "nDPI > 4.6.0 or API version >= 7001 required"
+#if ((NDPI_MAJOR == 4 && NDPI_MINOR < 8) || NDPI_MAJOR < 4) && NDPI_API_VERSION < 9000
+#error "nDPI >= 4.8.0 or API version >= 9000 required"
#endif
#if nDPId_MAX_READER_THREADS <= 0
@@ -611,6 +611,7 @@ static int set_collector_nonblock(struct nDPId_reader_thread * const reader_thre
while ((current_flags = fcntl(reader_thread->collector_sockfd, F_SETFL, current_flags | O_NONBLOCK)) == -1 &&
errno == EINTR)
{
+ // Retry if interrupted by a signal.
}
if (current_flags == -1)
{