From 509cfcb5560cd00bbd2f6d651ac8829147e08729 Mon Sep 17 00:00:00 2001 From: Luca Deri Date: Sat, 23 Nov 2019 19:54:06 +0100 Subject: Fixed invalid category matching in HTTP Fixed overlapping categories --- src/lib/protocols/http.c | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) (limited to 'src/lib/protocols') diff --git a/src/lib/protocols/http.c b/src/lib/protocols/http.c index 2525cfbd7..6b26a7dc3 100644 --- a/src/lib/protocols/http.c +++ b/src/lib/protocols/http.c @@ -287,17 +287,6 @@ static void check_content_type_and_change_protocol(struct ndpi_detection_module_ NDPI_LOG_DBG2(ndpi_struct, "HOST line found %.*s\n", packet->host_line.len, packet->host_line.ptr); - /* call ndpi_match_host_subprotocol to see if there is a match with known-host HTTP subprotocol */ - if(flow->http_detected) { - ndpi_protocol_match_result ret_match; - - ndpi_match_host_subprotocol(ndpi_struct, flow, - (char*)packet->host_line.ptr, - packet->host_line.len, - &ret_match, - NDPI_PROTOCOL_HTTP); - } - /* Copy result for nDPI apps */ if(!ndpi_struct->disable_metadata_export) { len = ndpi_min(packet->host_line.len, sizeof(flow->host_server_name)-1); @@ -305,7 +294,7 @@ static void check_content_type_and_change_protocol(struct ndpi_detection_module_ flow->host_server_name[len] = '\0'; flow->extra_packets_func = NULL; /* We're good now */ } - + flow->server_id = flow->dst; if(packet->forwarded_line.ptr) { -- cgit v1.2.3