this is a simple post dissector code... just add a new protofield with the string “blahblahblah” in the dissect tree. The weird thing is if the line “b2=10” is removed, the script works; if it exists, the scripts doesn’t work.
I have met this issue on stable version 2.0.1 and development versioni 2.1.0 asked 18 Feb ‘16, 22:45 kylegzy |
One Answer:
This is expected behavior since Wireshark processes packets more than once. You can see the difference in behavior if you run Compare:
with:
In the first case, the first packet in In the second case, all packets including the first packet will be processed more than once, so none of the packets will display the answered 22 Jul '16, 08:31 cmaynard ♦♦ |