From 5f26149938e1465d75159b71ddbbdb8673ffa508 Mon Sep 17 00:00:00 2001 From: Luca Date: Tue, 18 Jun 2019 17:36:39 +0200 Subject: Added DHCP fingerpring handling --- example/ndpi_util.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'example/ndpi_util.c') diff --git a/example/ndpi_util.c b/example/ndpi_util.c index 896332e08..c8e0130ff 100644 --- a/example/ndpi_util.c +++ b/example/ndpi_util.c @@ -530,8 +530,9 @@ void process_ndpi_collected_info(struct ndpi_workflow * workflow, struct ndpi_fl snprintf(flow->host_server_name, sizeof(flow->host_server_name), "%s", flow->ndpi_flow->host_server_name); - /* BITTORRENT */ - if(flow->detected_protocol.app_protocol == NDPI_PROTOCOL_BITTORRENT) { + if(flow->detected_protocol.app_protocol == NDPI_PROTOCOL_DHCP) { + snprintf(flow->dhcp_fingerprint, sizeof(flow->dhcp_fingerprint), "%s", flow->ndpi_flow->protos.dhcp.fingerprint); + } else if(flow->detected_protocol.app_protocol == NDPI_PROTOCOL_BITTORRENT) { u_int i, j, n = 0; for(i=0, j = 0; j < sizeof(flow->bittorent_hash)-1; i++) { -- cgit v1.2.3