diff options
author | Luca Deri <lucaderi@users.noreply.github.com> | 2020-08-22 16:30:29 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-22 16:30:29 +0200 |
commit | 519ba7a9d5d97c7bcc2c4270617b8d11afc45d8e (patch) | |
tree | 86d33ea644de44046f487ed3e60534ddd9f11890 /example/ndpiReader.c | |
parent | fef199ad450d451d88d143d395dfcfd7906deefc (diff) | |
parent | b23cfd6b8444ec44dcc1b349ed0ee0659df8447d (diff) |
Merge pull request #989 from IvanNardi/quic
Improve QUIC detection
Diffstat (limited to 'example/ndpiReader.c')
-rw-r--r-- | example/ndpiReader.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/example/ndpiReader.c b/example/ndpiReader.c index 5202c8b78..ed56c2114 100644 --- a/example/ndpiReader.c +++ b/example/ndpiReader.c @@ -3699,6 +3699,10 @@ int orginal_main(int argc, char **argv) { "------------------------------------------------------------\n\n"); printf("Using nDPI (%s) [%d thread(s)]\n", ndpi_revision(), num_threads); + + const char *gcrypt_ver = ndpi_get_gcrypt_version(); + if(gcrypt_ver) + printf("Using libgcrypt version %s\n", gcrypt_ver); } signal(SIGINT, sigproc); |