[Wireshark-dev] buildbot failure in Wireshark (development) on OSX-10.5-x86

2009-10-12 Thread buildbot-no-reply
The Buildbot has detected a new failure of OSX-10.5-x86 on Wireshark (development). Full details are available at: http://buildbot.wireshark.org/trunk/builders/OSX-10.5-x86/builds/533 Buildbot URL: http://buildbot.wireshark.org/trunk/ Buildslave for this Build: osx-10.5-x86 Build Reason:

[Wireshark-dev] checkapi done at the wrong place?

2009-10-12 Thread Joerg Mayer
Just something that I'm wondering about: Why do we need to run checkapi every now and then, if it could be run as a script on svn checkin time and just refuse the checkin if it finds usage of a forbidden api? The deprecated stuff is something else, we do not want to disable checking in fixes to

[Wireshark-dev] Linux Compile

2009-10-12 Thread Rob
Hello, Perhaps I'm missing something, but I've read over a ton of mailing list entries and can't seem to find what I'm missing. I'm using Ubuntu 9.10 and I have everything loaded that I need to have loaded. In fact, when I run the ./autogen.sh, ./configure, and make, I don't have a problem at

Re: [Wireshark-dev] Linux Compile

2009-10-12 Thread Tobias Wärre
The .nmake files are for windows use, and I've had problems using the Custom.nmake file for windows also, so I use the ordinary makefile in epan. (I forgot its name just now). BR Tobias W -Original Message- From: wireshark-dev-boun...@wireshark.org

[Wireshark-dev] Uninitialized value in packet-x11.c

2009-10-12 Thread Stig Bjørlykke
Hi, In packet-x11.c we have a function keycode2keysymString() with a possible use of an uninitialized value. At line 1848 (svn r30536) keysum can be assigned an uninitialized usym. Does anyone know how we should fix this correctly? -- Stig Bjørlykke

Re: [Wireshark-dev] UAT and Apply Callback

2009-10-12 Thread Bryant Eastham
Ping? Anybody have a solution to this issue? From: wireshark-dev-boun...@wireshark.org [mailto:wireshark-dev-boun...@wireshark.org] On Behalf Of Bryant Eastham Sent: Friday, October 09, 2009 12:10 PM To: Developer support list for Wireshark Subject: [Wireshark-dev] UAT and Apply Callback

Re: [Wireshark-dev] UAT and Apply Callback

2009-10-12 Thread Jeff Morriss
Bryant Eastham wrote: Is it true that there is no way to have changes to UAT preferences cause the registered callback to occur? I have looked through the code, and it seems pretty clear that prefs_changed is not set by UAT, and that there are no external ways to set the flag. It also

[Wireshark-dev] mingw for plugin developement

2009-10-12 Thread gmail
Hello All, i ha ve developed a dissector, using gcc on windows (mingw). Wireshark says that cannot load the module, i read already the FAQs. So is there any chance to have this mingw dll loadable ? I will not install any M$ payment / cracked M$VC or similar in my PC, and also think that

Re: [Wireshark-dev] mingw for plugin developement

2009-10-12 Thread Balint Reczey
Hi Angelo, Try Visual C++ 2008 Express Edition, it's free. http://www.wireshark.org/docs/wsdg_html_chunked/ChToolsMSChain.html Cheers, Balint gmail wrote: Hello All, i ha ve developed a dissector, using gcc on windows (mingw). Wireshark says that cannot load the module, i read already the

[Wireshark-dev] Dissecting protocol running under UDP

2009-10-12 Thread Beth
I am working with a plugin dissector that handles a protocol running under IEEE 802.15.4. The source code for this dissector (written by someone else) combines the 802.15.4 dissection with the other protocol. I am attempting to split the existing plugin into a separate plugin for the other

Re: [Wireshark-dev] Linux Compile

2009-10-12 Thread Stephen Fisher
On Oct 11, 2009, at 7:22 PM, Rob wrote: I'm using Ubuntu 9.10 and I have everything loaded that I need to have loaded. In fact, when I run the ./autogen.sh, ./configure, and make, I don't have a problem at all. However, I can't seem to get my custom dissector to compile. I've modified

Re: [Wireshark-dev] UAT and Apply Callback

2009-10-12 Thread Bryant Eastham
Jeff Morriss wrote: The K12xx dissector uses a UAT preference and applying changes to its UAT preference takes effect immediately. It appears that registering a UAT preference involves defining a callback function that is called when the preference is applied/updated. Is that registered

Re: [Wireshark-dev] UAT and Apply Callback

2009-10-12 Thread Jeff Morriss
Bryant Eastham wrote: Jeff Morriss wrote: The K12xx dissector uses a UAT preference and applying changes to its UAT preference takes effect immediately. It appears that registering a UAT preference involves defining a callback function that is called when the preference is

Re: [Wireshark-dev] Dissecting protocol running under UDP

2009-10-12 Thread Jeff Morriss
Beth wrote: I am working with a plugin dissector that handles a protocol running under IEEE 802.15.4. The source code for this dissector (written by someone else) combines the 802.15.4 dissection with the other protocol. I am attempting to split the existing plugin into a separate

Re: [Wireshark-dev] Dissecting protocol running under UDP

2009-10-12 Thread Beth
Ah, of course. Thanks. On Mon, Oct 12, 2009 at 1:20 PM, Jeff Morriss jeff.morriss...@gmail.comwrote: 4. Write another dissector that registers for the appropriate udp.port and calls find_dissector(wpan) (or wpan-nofcs or one of the other names for that dissector) to get a handle to the

Re: [Wireshark-dev] UAT and Apply Callback (Partial Solution)

2009-10-12 Thread Bryant Eastham
All- Jeff's recent comment prompted me to check the code again. This led to a partial solution to my problem, although there are some strange effects. From his message I see that the UAT Apply button does cause the packets to be reloaded. By putting my preferences reinit call inside my

[Wireshark-dev] opening JPEG/JFIF files with Wireshark?

2009-10-12 Thread Németh Márton
Hi, as some wiki pages show ( http://wiki.wireshark.org/JPEG_JFIF and http://wiki.wireshark.org/TCP_Reassembly at Chapter Example) Wireshark understands the JPEG/JFIF file. Is there any way to open a raw JPEG/JFIF file similar to how the MP3 files can be opened? I guess something has to be done

Re: [Wireshark-dev] opening JPEG/JFIF files with Wireshark?

2009-10-12 Thread Guy Harris
On Oct 12, 2009, at 1:30 PM, Németh Márton wrote: as some wiki pages show ( http://wiki.wireshark.org/JPEG_JFIF and http://wiki.wireshark.org/TCP_Reassembly at Chapter Example) Wireshark understands the JPEG/JFIF file. Is there any way to open a raw JPEG/JFIF file similar to how the MP3

Re: [Wireshark-dev] mingw for plugin developement

2009-10-12 Thread gmail
Hello, i am trying it, but still have the Couldn't load module message from ws. Is there some particular setting for the project for the plugin dll ? many thanks Angelo Balint Reczey ha scritto: Hi Angelo, Try Visual C++ 2008 Express Edition, it's free.

Re: [Wireshark-dev] g_mem-chunk_destroy does not free memory for GLib 2.8

2009-10-12 Thread Anders Broman
Hi, Should fixes to these probleems be backported to 1.2.3? Regards Anders -Original Message- From: wireshark-dev-boun...@wireshark.org [mailto:wireshark-dev-boun...@wireshark.org] On Behalf Of Bill Meier Sent: den 11 oktober 2009 15:32 To: Developer support list for Wireshark Subject:

Re: [Wireshark-dev] g_mem-chunk_destroy does not free memory for GLib 2.8

2009-10-12 Thread Bill Meier
Anders Broman wrote: Hi, Should fixes to these probleems be backported to 1.2.3? Regards Anders Yep: I'll add them all to the roadmap soon (after I've made sure I'm OK with everything). Even tho (in theory) most of the GMemChunks have been fixed, I'm still looking at a large memory leak

Re: [Wireshark-dev] g_mem-chunk_destroy does not free memory for GLib 2.8

2009-10-12 Thread Jaap Keuter
Hi, Memory leaks are real bugs that need to be fixed in the release branch. So yeah, careful backporting is required. Thanx, Jaap Send from my iPhone On 13 okt 2009, at 03:55, Anders Broman anders.bro...@ericsson.com wrote: Hi, Should fixes to these probleems be backported to 1.2.3?