summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorUlf Lamping <ulf.lamping@web.de>2007-03-06 21:54:53 +0000
committerUlf Lamping <ulf.lamping@web.de>2007-03-06 21:54:53 +0000
commite30640be45a5a10fe42ec4c94a2380d50ab8ddbd (patch)
treea573ad9f31aa918965987330db0a45155dc83cd5 /plugins
parentecbf96d04e047c8cce0fb77b295e2e65723b5351 (diff)
downloadwireshark-e30640be45a5a10fe42ec4c94a2380d50ab8ddbd.tar.gz
PROFINET RT frames can also be transported over UDP Port 0x8892 - to be routable
svn path=/trunk/; revision=20985
Diffstat (limited to 'plugins')
-rw-r--r--plugins/profinet/packet-pn-rt.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/plugins/profinet/packet-pn-rt.c b/plugins/profinet/packet-pn-rt.c
index 585ed0940d..848840bc0c 100644
--- a/plugins/profinet/packet-pn-rt.c
+++ b/plugins/profinet/packet-pn-rt.c
@@ -432,8 +432,10 @@ proto_reg_handoff_pn_rt(void)
}
else {
dissector_delete("ethertype", ETHERTYPE_PROFINET, pn_rt_handle);
+ dissector_delete("udp.port", 0x8892, pn_rt_handle);
}
dissector_add("ethertype", ETHERTYPE_PROFINET, pn_rt_handle);
+ dissector_add("udp.port", 0x8892, pn_rt_handle);
}