I have a plugin dissector which may attach expert info to a packet as shown below:
Here, Because of this I can't filter on packets in my protocol with an expert info that is specific to my protocol. How can I change my code so that the expert-info marked packets of my protocol are correctly filterable? asked 13 Jan '12, 07:55 multipleinte... |
One Answer:
Are you calling expert_add_info_format() from within an
answered 13 Jan '12, 17:18 cmaynard ♦♦ |
This is the problem. I checked by rearranging a small portion of my dissector so the expert logic for one specific case would be run regardless of the
tree
. As expected, the filterexpert
correctly displays those packets, but still misses other marked packets that depend ontree
.