diff options
Diffstat (limited to 'example/ndpiReader.c')
-rw-r--r-- | example/ndpiReader.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/example/ndpiReader.c b/example/ndpiReader.c index 38ce75b14..ddd83bb74 100644 --- a/example/ndpiReader.c +++ b/example/ndpiReader.c @@ -3142,6 +3142,11 @@ int main(int argc, char **argv) { #endif int i; + if(ndpi_get_api_version() != NDPI_API_VERSION) { + printf("nDPI Library version mismatch: please make sure this code and the nDPI library are in sync\n"); + return(-1); + } + automataUnitTest(); ndpi_info_mod = ndpi_init_detection_module(); |