|
I have made a custom dissector but do not know how to use it in wireshark. Is there a way to add this custom dissector to the decode as menu or simply use it some other way? |
|
You should read README.developer, which shows you how to add your dissector to another dissector's table similar to this:
...where Also note that your dissector may not be automatically added to the "Decode As..." menu (see here). 1
It's also possible to use
Look at
(18 Jul '12, 10:57)
Bill Meier ♦
I tried the dissector_add_uint method, but my dissector only decodes a few UDP packets rather than all of them.
Also wouldnt this method only decode UDP packets that use the same source port as "myport"?
(23 Jul '12, 08:14)
bball2601
You could try a heuristic dissector but that means that your dissector will have to "look at" a number of bytes in the packet and determine if it's your protocol or not.
(23 Jul '12, 08:54)
Anders ♦
|
