aboutsummaryrefslogtreecommitdiff
path: root/nDPId.c
diff options
context:
space:
mode:
authorToni Uhlig <matzeton@googlemail.com>2023-09-09 19:32:08 +0200
committerToni Uhlig <matzeton@googlemail.com>2023-09-10 19:32:08 +0200
commite42e3fe406c30bec09fe3be0c6bacd1efac44950 (patch)
treed5387f314725c83af1eefd4dab39c8b9a02cebbf /nDPId.c
parent96b0a8a4749f56244b9d6841de3696ab7fe1fd0e (diff)
Serialize nDPId / libnDPI versions within daemon events.
* changed nDPI version hints / requirements Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'nDPId.c')
-rw-r--r--nDPId.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/nDPId.c b/nDPId.c
index d06a98418..a03cd85e1 100644
--- a/nDPId.c
+++ b/nDPId.c
@@ -50,7 +50,7 @@
#endif
#if ((NDPI_MAJOR == 4 && NDPI_MINOR < 7) || NDPI_MAJOR < 4) && NDPI_API_VERSION < 7001
-#error "nDPI >= 4.7.0 or API version >= 7001 required"
+#error "nDPI > 4.6.0 or API version >= 7001 required"
#endif
#if nDPId_MAX_READER_THREADS <= 0
@@ -2084,6 +2084,12 @@ static void jsonize_daemon(struct nDPId_reader_thread * const reader_thread, enu
}
jsonize_basic(reader_thread, 1);
+#ifndef PKG_VERSION
+ ndpi_serialize_string_string(&workflow->ndpi_serializer, "version", "unknown");
+#else
+ ndpi_serialize_string_string(&workflow->ndpi_serializer, "version", PKG_VERSION);
+#endif
+ ndpi_serialize_string_string(&workflow->ndpi_serializer, "ndpi_version", ndpi_revision());
switch (event)
{