From 4543385d107fcc5a7e8632e35d9a60bcc40cb4f4 Mon Sep 17 00:00:00 2001 From: Vitaly Lavrov Date: Mon, 5 Feb 2024 21:44:45 +0300 Subject: Normalization of host_server_name (#2299) * Normalization of host_server_name The ndpi_hostname_sni_set() function replaces all non-printable characters with the "?" character and removing whitespace characters at the end of the line. * Added conditional hostname normalization. --- src/lib/protocols/dhcp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/lib/protocols/dhcp.c') diff --git a/src/lib/protocols/dhcp.c b/src/lib/protocols/dhcp.c index 820b57164..092d5ce61 100644 --- a/src/lib/protocols/dhcp.c +++ b/src/lib/protocols/dhcp.c @@ -180,7 +180,7 @@ static void ndpi_search_dhcp_udp(struct ndpi_detection_module_struct *ndpi_struc NDPI_LOG_DBG2(ndpi_struct, "[DHCP] '%.*s'\n",name,len); // while(j < len) { printf( "%c", name[j]); j++; }; printf("\n"); #endif - ndpi_hostname_sni_set(flow, name, len); + ndpi_hostname_sni_set(flow, name, len, NDPI_HOSTNAME_NORM_ALL); } i += len + 2; -- cgit v1.2.3