Re: [Wireshark-dev] GtkCritical On Fedora Linux referencinggtk_toolbar_set_style...

2009-09-28 Thread Anders Broman
Hi, Can you try revision 30185 and see if it has any side effects. Regards Anders -Ursprungligt meddelande- Från: wireshark-dev-boun...@wireshark.org [mailto:wireshark-dev-boun...@wireshark.org] För Bill Meier Skickat: den 28 september 2009 03:14 Till: Developer support list for Wireshark

Re: [Wireshark-dev] GtkCritical On Fedora Linux referencinggtk_toolbar_set_style...

2009-09-28 Thread Bill Meier
Anders Broman wrote: Hi, Can you try revision 30185 and see if it has any side effects. Regards Anders AFAIKT it works AOK: No more Gtk-Critical message and changing the filter toolbar style still works; (I tested both with and without the Filter Toolbar being visible). Bill

[Wireshark-dev] Modifying the Decode of Previous Packets

2009-09-28 Thread Bryant Eastham
All- I have developed many dissectors, but have not run up against this problem before. I am looking for a solution that will work inside a plugin dissector. The issue is that I have some secure traffic that I cannot decode until I learn some state that is only periodically advertised.

[Wireshark-dev] switch statement in proto_register

2009-09-28 Thread Cole, Richard L. (MSFC-ES53)[MTSI]
What is the preferred method for supporting multiple versions of a protocol within a dissector? I have setup a protocol preference and was using that in a switch statement structure but the proto_register function doesn't seem to like the switch statement. Dissect_ doesn't might the switch

Re: [Wireshark-dev] Modifying the Decode of Previous Packets

2009-09-28 Thread didier
Hi, Le lundi 28 septembre 2009 à 14:20 -0600, Bryant Eastham a écrit : All- I have developed many dissectors, but have not run up against this problem before. I am looking for a solution that will work inside a plugin dissector. The issue is that I have some secure traffic that

Re: [Wireshark-dev] switch statement in proto_register

2009-09-28 Thread Jaap Keuter
Hi, See packet-m2pa.c for an example. Thanx, Jaap Cole, Richard L. (MSFC-ES53)[MTSI] wrote: What is the preferred method for supporting multiple versions of a protocol within a dissector? I have setup a protocol preference and was using that in a switch statement structure but the