The two function just in the packet-umts-fp.c. The protocol is "fp".but i don't know how to use it. When I select a packet,then dissect as,there is no "fp" to select.why? Hope the master give advice or comments please! asked 14 Jun '12, 01:06 smilezuzu |
One Answer:
Hi, Look in doc/README.heuristic to get some information on heuristics. if you want to register and UDP dissector to be able to use "decode as" use dissector_add_handle("udp.port", fp_handle); In this particular case that will probably do you no good as you need the fp_info struct (packet-umts_fp.h filled in and stored in per_packet_data for the FP dissector to be able to dissect the packet. It might be possible to designa heuristic to find FP packets making use of the CRC to at least dissect control signals, from there it might be possible to do more. regards Anders answered 14 Jun '12, 05:17 Anders ♦ |