Re: [Wireshark-dev] How to get my dissector called

2007-05-21 Thread Guy Harris
Kevin Jones wrote: > Is "dissector_add("ethertype", ETHERTYPE_ARP, arp_handle);" how you > register a dissector with a lower layer protocol? Yes, that's how you'd register a dissector that has an Ethernet type; you'd replace "ETHERTYPE_ARP" with your Ethernet type, and replace "arp_handle" wi

[Wireshark-dev] How to get my dissector called

2007-05-21 Thread Kevin Jones
Skickat: må 2007-05-21 15:37 Till: [EMAIL PROTECTED]<http://gmane.org/get-address.php?address=wireshark%2ddev%2dIZ8446WsY0%2fdtAWm4Da02A%40public.gmane.org> Ämne: [Wireshark-dev] How to get my dissector called? Hi, What about a dissector gets it called when Wireshark is looking to disect

Re: [Wireshark-dev] How to get my dissector called?

2007-05-21 Thread Anders Broman \(AL/EAB\)
Hi, What Ethernet type does your protocol use? You should register your dissector for that type. Regards Anders Från: [EMAIL PROTECTED] genom Kevin Jones Skickat: må 2007-05-21 15:37 Till: wireshark-dev@wireshark.org Ämne: [Wireshark-dev] How to get my dissector

[Wireshark-dev] How to get my dissector called?

2007-05-21 Thread Kevin Jones
Hi, What about a dissector gets it called when Wireshark is looking to disect a packet. I'm writing a dissector for a protocol on top of the ethernet layer. Right now I'm using the example in the developers guide just to see if I can get the program to call the example... but it doesn't seem to e