I have a plugin dissector and I'm upgrading to 1.10. I ran across a compile warning where the definition of heur_dissector_t now has an extra parameter void* The header file doesn't have any documentation for the parameter. What is it for? I grepped the other plugins and see that packet-esl.c as well as all the others that have heur_dissector_add which doesn't have the 4th parameter void* asked 18 Oct '13, 15:23 tlann |
One Answer:
Passing private data from one dissector to another, rather than using the answered 18 Oct '13, 17:16 Guy Harris ♦♦ |
Is there an example of how this is used in the source?