I have to write one wireshark Dissector as a plugin for a protocol. I've one captured file having hexadecimal Bytes code input that is to be dissected through my Dissector/plugin .
How to do it ?
I've built one basic wireshark plugin as per
https://www.wireshark.org/docs/wsdg_html_chunked/ChDissectAdd.html
and doc/README.plugins
so I know the basic steps to build the wireshark plugin (custom extension).
But i don't know where to put that file to analyze and what are all the function needed to write in my packet-dissector.c ?
Any suggestions ?
Thanks.