From 4f44ba31b5539bd288600649015f95de9a3a89a6 Mon Sep 17 00:00:00 2001 From: basakkal Date: Wed, 26 Sep 2018 23:35:25 -0700 Subject: PROFINET: DynamicFramePacking subframes are decoded. Last version of Wireshark can not decode DynamicFramePacking subframes. Changes are implemented to decode subframes. Change-Id: Ifba011418a5211d9599c48d37597a16733dfafa8 Reviewed-on: https://code.wireshark.org/review/29882 Petri-Dish: Anders Broman Tested-by: Petri Dish Buildbot Reviewed-by: Anders Broman --- plugins/epan/profinet/packet-dcerpc-pn-io.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'plugins/epan') diff --git a/plugins/epan/profinet/packet-dcerpc-pn-io.c b/plugins/epan/profinet/packet-dcerpc-pn-io.c index 1206b0bc69..528703e3fc 100644 --- a/plugins/epan/profinet/packet-dcerpc-pn-io.c +++ b/plugins/epan/profinet/packet-dcerpc-pn-io.c @@ -11114,7 +11114,7 @@ dissect_PNIO_heur(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, /* frame id must be in valid range (cyclic Real-Time, class=3) */ if ((u16FrameID >= 0x0100 && u16FrameID <= 0x06FF) || /* RTC3 non redundant */ (u16FrameID >= 0x700 && u16FrameID <= 0x0fff)) { /* RTC3 redundant */ - dissect_PNIO_C_SDU(tvb, 0, pinfo, tree, drep); + dissect_CSF_SDU_heur(tvb, pinfo, tree, data); return TRUE; } -- cgit v1.2.3