https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6373
--- Comment #12 from Bill Meier <wmeier@xxxxxxxxxxx> 2011-09-28 12:51:38 EDT ---
> However, 'Decode As'
> won't work if the dissector is only heuristic (which sounds like a bug to me)
> I had to do:
> dissector_add_uint("tcp.port", 0, spice_handle);
> to have it on the list...
A better way:
dissector_add_handle("tcp.port", spice_handle);
> > 17. Has the dissector been fuzz-tested ?
>
> No, is there some automated manner of doing it? Wasn't sure how to get
> fuzz-test.sh work against it:
> [ykaul@ykaul wireshark]$ tools/fuzz-test.sh -p 10 ~/spice-example.pcap.gz
> Error: No valid capture files found.
Bad filename arg ?
fuzz-test.sh is the correct script to use.
The script uses capinfos to check for file existence and validity.
If no [valid] files are found,it just gives the "No valid ..." message.
--
Configure bugmail: https://bugs.wireshark.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.