diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2024-02-06 10:49:47 +0100 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2024-02-06 10:49:47 +0100 |
commit | 556025b34d53c33d389de33a5c8c162e201d2267 (patch) | |
tree | 71d769b8c2ae4d16abe70512f3f89a9bd8dd246c /nDPId.c | |
parent | feb2583ef680281c827df75e3c3f6d4b97be8d8f (diff) |
Removed API version macro check as it's inconsistent on different platforms.
* set min required nDPI version to 4.9.0
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'nDPId.c')
-rw-r--r-- | nDPId.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -54,10 +54,10 @@ #define DLT_DSA_TAG_EDSA 285 #endif -#define NDPI_VERSION_CHECK ((NDPI_MAJOR == 5 && NDPI_MINOR < 0) || NDPI_MAJOR < 5) +#define NDPI_VERSION_CHECK ((NDPI_MAJOR == 4 && NDPI_MINOR < 9) || NDPI_MAJOR < 4) -#if NDPI_VERSION_CHECK && NDPI_API_VERSION < 10172 -#error "nDPI >= 5.0.0 or API version >= 10172 required" +#if NDPI_VERSION_CHECK +#error "nDPI >= 4.9.0 required" #endif #if nDPId_MAX_READER_THREADS <= 0 |