I'm trying to print a specific data inside my Wireshark Custom Dissector to a file that I can upload to a different program. I tried opening and writing to a data using asked 06 Aug '15, 14:40 J1Ronnie |
One Answer:
OS and Wireshark version? There are platform independent file I/O routines in wsutil\file_util that might be handy. Arguably though, writing to a file in a dissector is not a good idea, it will slow down dissection and live captures. Maybe it should be driven from a user generated action, e.g. a menu option. answered 07 Aug '15, 01:20 grahamb ♦ |
Yes, look into using a tap for that.