aboutsummaryrefslogtreecommitdiff
path: root/example/ndpiReader.c
diff options
context:
space:
mode:
authorLuca <deri@ntop.org>2019-06-18 17:36:39 +0200
committerLuca <deri@ntop.org>2019-06-18 17:36:39 +0200
commit5f26149938e1465d75159b71ddbbdb8673ffa508 (patch)
treee9ffb9f80e48d3d7af16db45b9298b74c0940319 /example/ndpiReader.c
parent41b75485eba80485eb3b5b8ae6f7f90d5f44e47e (diff)
Added DHCP fingerpring handling
Diffstat (limited to 'example/ndpiReader.c')
-rw-r--r--example/ndpiReader.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/example/ndpiReader.c b/example/ndpiReader.c
index 87d86eaa0..25886af31 100644
--- a/example/ndpiReader.c
+++ b/example/ndpiReader.c
@@ -848,6 +848,7 @@ static void printFlow(u_int16_t id, struct ndpi_flow_info *flow, u_int16_t threa
if(flow->ssh_ssl.server_cipher != '\0') fprintf(out, "[%s]", ndpi_cipher2str(flow->ssh_ssl.server_cipher));;
if(flow->bittorent_hash[0] != '\0') fprintf(out, "[BT Hash: %s]", flow->bittorent_hash);
+ if(flow->dhcp_fingerprint[0] != '\0') fprintf(out, "[DHCP Fingerprint: %s]", flow->dhcp_fingerprint);
fprintf(out, "\n");
} else {