Hi, I have an disssector that calls another post-dissector. That works fine in Wireshark 2.2.0 with
but fails as soon as I use
with 'Bad argument #2 to packet_dissector (Tvb expected, got userdata) Any hints? asked 21 Oct '16, 04:52 Thomas E |
One Answer:
Use
(fixed according to the comment of @Thomas E). answered 21 Oct '16, 05:07 sindy edited 21 Oct '16, 10:46 |
Actually it is
packet_dissector(tvb:range(some_offset,some_length):tvb(), pinfo, tree)
Thanks, Thomas