aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-h1.c
diff options
context:
space:
mode:
authorulfl <ulfl@f5534014-38df-0310-8fa8-9805f1628bb7>2005-09-17 14:14:24 +0000
committerulfl <ulfl@f5534014-38df-0310-8fa8-9805f1628bb7>2005-09-17 14:14:24 +0000
commit0a1ab289e925d37327907240d3f430000c8f4ab0 (patch)
treebc9ad43ac9e740d896f8b4377e8feb47c323999d /epan/dissectors/packet-h1.c
parent8a25606d6bdcf1d79805dd7ee869bf1a81657545 (diff)
using heur_dissector_add("cotp_is") doesn't seem to be enough, if H1 is used over TCP/TPKT (RFC1006). Add heur_dissector_add("cotp") so it will be dissected correctly, hopefully this won't introduce new problems with other "cotp" heuristics ...
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@15850 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-h1.c')
-rw-r--r--epan/dissectors/packet-h1.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/epan/dissectors/packet-h1.c b/epan/dissectors/packet-h1.c
index 286e2d7b6c..21eedfa738 100644
--- a/epan/dissectors/packet-h1.c
+++ b/epan/dissectors/packet-h1.c
@@ -317,6 +317,7 @@ proto_register_h1 (void)
void
proto_reg_handoff_h1(void)
{
+ heur_dissector_add("cotp", dissect_h1, proto_h1);
heur_dissector_add("cotp_is", dissect_h1, proto_h1);
data_handle = find_dissector("data");
}