I have a heuristic dissector which works perfectly, but the tree still contains a "data" field which contains the same number of bytes as the dissector decoded. The tree appears as: IP Is there a way to remove or block that Data leaf from binding to the tree? asked 21 Feb '12, 11:56 Clifford Haas edited 21 Feb '12, 14:10 multipleinte... |
One Answer:
Make sure to return TRUE from your heuristic dissector. answered 21 Feb '12, 12:20 Jaap ♦ |
I have verified that the dissector does return TRUE. I even placed a "return (TRUE)" near the top of the dissector, right after I change the column info. This still left DATA on the tree. 8-(
Is it possible that using tcp_dissect_pdus to reassemble is conflicting with pure TCP heuristic?