From 5f745ee425be564e8a0987438162713731c4b436 Mon Sep 17 00:00:00 2001 From: Luca Deri Date: Sun, 30 Jan 2022 19:17:23 +0100 Subject: Commented old code (see https://github.com/ntop/nDPI/pull/1425) --- src/lib/ndpi_main.c | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'src/lib') diff --git a/src/lib/ndpi_main.c b/src/lib/ndpi_main.c index 628fa33e3..6c4b31499 100644 --- a/src/lib/ndpi_main.c +++ b/src/lib/ndpi_main.c @@ -5746,6 +5746,15 @@ ndpi_protocol ndpi_detection_process_packet(struct ndpi_detection_module_struct ret = ndpi_detection_giveup(ndpi_str, flow, 0, &protocol_was_guessed); } +#if 0 + /* See https://github.com/ntop/nDPI/pull/1425 */ + if((ret.master_protocol == NDPI_PROTOCOL_UNKNOWN) && (ret.app_protocol != NDPI_PROTOCOL_UNKNOWN) && + (flow->guessed_host_protocol_id != NDPI_PROTOCOL_UNKNOWN)) { + ret.master_protocol = ret.app_protocol; + ret.app_protocol = flow->guessed_host_protocol_id; + } +#endif + if((!flow->risk_checked) && ((ret.master_protocol != NDPI_PROTOCOL_UNKNOWN) || (ret.app_protocol != NDPI_PROTOCOL_UNKNOWN)) ) { -- cgit v1.2.3