[Wireshark-dev] SVN revision 35005 and heuristic dissectors

2010-11-24 Thread Pascal Quantin
Hi, since revision 35005 and the commit of the ReLOAD framing dissector the UDP heuristic dissector I use (LTE-RLC) no longer works. My RLC PDU is seen as a ReLOAD packet. When looking at the code, the function dissect_reload_framing_heur() calls dissect_reload_framing_message() that does almost

[Wireshark-dev] Segmentation Fault in Simple Dissector-Plugin

2010-11-24 Thread Patrick Nowak
Hello, I am fairly new to developing Dissectors for Wireshark. I started with the small sample from the Wireshark Developers Guide and changed a few things(Strings and Port). My Plugin looks like this: #ifdef HAVE_CONFIG_H # include config.h #endif #include epan/packet.h #define

Re: [Wireshark-dev] Segmentation Fault in Simple Dissector-Plugin

2010-11-24 Thread news.gmane.com
Patrick Nowak student.no...@nordsys.de wrote in message news:4cecf80a.8040...@nordsys.de... Hello, I am fairly new to developing Dissectors for Wireshark. I started with the small sample from the Wireshark Developers Guide and changed a few things(Strings and Port). My Plugin looks like

Re: [Wireshark-dev] Segmentation Fault in Simple Dissector-Plugin

2010-11-24 Thread Patrick Nowak
Hey, thanks for your reply! proto_slapml should be proto_testdissect, thats right. I just forgot to rename it, after I copied the source-code into the email, in the original version the code does compile. So I guess the error comes from your third suggestion. I will look into it! Regards,

[Wireshark-dev] buildbot failure in Wireshark (development) on Windows-7-x64

2010-11-24 Thread buildbot-no-reply
The Buildbot has detected a new failure of Windows-7-x64 on Wireshark (development). Full details are available at: http://buildbot.wireshark.org/trunk/builders/Windows-7-x64/builds/485 Buildbot URL: http://buildbot.wireshark.org/trunk/ Buildslave for this Build: windows-7-x64 Build Reason:

Re: [Wireshark-dev] SVN revision 35005 and heuristic dissectors

2010-11-24 Thread Anders Broman
Hi, Does it work better with revision 35020 or later? Regards Anders From: wireshark-dev-boun...@wireshark.org [mailto:wireshark-dev-boun...@wireshark.org] On Behalf Of Pascal Quantin Sent: den 24 november 2010 09:04 To: Developer support list for Wireshark

[Wireshark-dev] buildbot failure in Wireshark (development) on OSX-10.6-x64

2010-11-24 Thread buildbot-no-reply
The Buildbot has detected a new failure of OSX-10.6-x64 on Wireshark (development). Full details are available at: http://buildbot.wireshark.org/trunk/builders/OSX-10.6-x64/builds/1391 Buildbot URL: http://buildbot.wireshark.org/trunk/ Buildslave for this Build: osx-10.6-x64 Build Reason:

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

2010-11-24 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/1766 Buildbot URL: http://buildbot.wireshark.org/trunk/ Buildslave for this Build: osx-10.5-x86 Build Reason:

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

2010-11-24 Thread buildbot-no-reply
The Buildbot has detected a new failure of OSX-10.5-PowerPC on Wireshark (development). Full details are available at: http://buildbot.wireshark.org/trunk/builders/OSX-10.5-PowerPC/builds/1506 Buildbot URL: http://buildbot.wireshark.org/trunk/ Buildslave for this Build: osx-10.5-ppc Build

[Wireshark-dev] buildbot failure in Wireshark (development) on Windows-7-x64

2010-11-24 Thread buildbot-no-reply
The Buildbot has detected a new failure of Windows-7-x64 on Wireshark (development). Full details are available at: http://buildbot.wireshark.org/trunk/builders/Windows-7-x64/builds/488 Buildbot URL: http://buildbot.wireshark.org/trunk/ Buildslave for this Build: windows-7-x64 Build Reason:

[Wireshark-dev] Messy capture_if_details_dlg_win32.c

2010-11-24 Thread Gisle Vanem
I'm not very happy about all the #ifdef-ing in capture_if_details_dlg_win32.c. Isn't it possible to do away with those by using unique names for possibly missing constants and typedefs (structs and enums)? Like: typedef unsigned short ws_eth_sa_family_t; ... struct ws_sockaddr_storage {

Re: [Wireshark-dev] SVN revision 35005 and heuristic dissectors

2010-11-24 Thread Pascal Quantin
Hi Anders, Le 24/11/2010 17:39, Anders Broman a écrit : Hi, Does it work better with revision 35020 or later? It's working fine now. Thanks, Pascal. Regards Anders *From:* wireshark-dev-boun...@wireshark.org

Re: [Wireshark-dev] Segmentation Fault in Simple Dissector-Plugin

2010-11-24 Thread Patrick Nowak
Hi, this morning I compared my code once again to the example-code from http://www.wireshark.org/docs/wsdg_html_chunked/ChDissectAdd.html#ChDissectDetails and it is exactly the same, except the ne protocol-name(which is correct in my code here. the code pasted into the email had a small