aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorUlf Lamping <ulf.lamping@web.de>2005-09-17 14:14:24 +0000
committerUlf Lamping <ulf.lamping@web.de>2005-09-17 14:14:24 +0000
commit8ace2749f38daec92df4da8cf2d1eda298cf36ff (patch)
treebc9ad43ac9e740d896f8b4377e8feb47c323999d
parentf00c521c19dda47bf2d1476775f00ccd0eefb9dd (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 ...
svn path=/trunk/; revision=15850
-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");
}