[Wireshark-dev] Generic call_dissector()

2008-07-30 Thread Hans Glück
Hello, I am writing a dissector and in the payload of my packets are different types of data/information (PPP, TCP,...) and maybe some more I don´t know. I wonder if I can call WS to dissect this payload without defining a special handle? => call_dissector(...) - therefor I have to define a ppp o

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

2008-07-30 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/486 Buildbot URL: http://buildbot.wireshark.org/trunk/ Buildslave for this Build: osx-10.5-x86 Build Reason: Buil

Re: [Wireshark-dev] Generic call_dissector()

2008-07-30 Thread Maynard, Chris
You may be able to get away with calling the lowest common denominator dissector and letting it naturally take care of handing off dissection to the next protocol, whatever it is. If there is no common denominator, one possible way to do it would be to have all possible protocol dissectors that

[Wireshark-dev] problem about SIR over WSP protocol

2008-07-30 Thread ding . yufeng1
Hi everybody There are doubts when I was encoding a SIR data Unit over wsp protocol.When packing the Application-ID List item, I just pack the the header value part of the X-WAP-Application-Id header,omitting the header name code 0xAF, but both of them should be packed into the item by wires

Re: [Wireshark-dev] problem about SIR over WSP protocol

2008-07-30 Thread Abhik Sarkar
Hi, Can you share a capture or a screenshot to explain your concern? I don't know about the others, but I couldn't quite understand what your point is... Thanks! Abhik. On Wed, Jul 30, 2008 at 12:14 PM, <[EMAIL PROTECTED]> wrote: > > Hi everybody >There are doubts when I was encoding a SIR

[Wireshark-dev] buildbot failure in Wireshark (development) on Windows-XP-x86

2008-07-30 Thread buildbot-no-reply
The Buildbot has detected a new failure of Windows-XP-x86 on Wireshark (development). Full details are available at: http://buildbot.wireshark.org/trunk/builders/Windows-XP-x86/builds/4630 Buildbot URL: http://buildbot.wireshark.org/trunk/ Buildslave for this Build: windows-xp-x86 Build Reason

Re: [Wireshark-dev] Generic call_dissector()

2008-07-30 Thread Abhik Sarkar
Building on Chris' idea... based on the assumption that your protocol has a field to say what the payload is (called payload_tag e.g.), you will still have to determine what the payload protocol (as Chris suggested) is but to keep things generic, you could register a preference which has a syntax o

[Wireshark-dev] lost debugging symbols in off tree build on leopard

2008-07-30 Thread Luis EG Ontanon
I got a new Mac, new processor family (much hotter), new OS version, new checkout... Same configure options I used to use. It builds OK. But, as I launch gdb for wireshark, I get plenty of these warnings : warning: Could not find object file "/Users/lego/ws_trunk/build/epan/.libs/libwireshark.la

[Wireshark-dev] Patch to support decoding LANforge packets.

2008-07-30 Thread Ben Greear
LANforge is a network traffic generator that my company sells. Part of our feature set is UDP and TCP traffic generation. We have a small header followed by a payload. The payload is normally just filler and of no special interest to users. Attached is a patch to decode the LANforge header.

Re: [Wireshark-dev] Patch to support decoding LANforge packets.

2008-07-30 Thread Abhik Sarkar
Hello Ben, Please follow the instructions here (http://www.wireshark.org/docs/wsdg_html_chunked/ChSrcContribute.html#ChSrcSend) to make sure that your contribution is tracked properly and not lost. Thanks! Abhik. On Thu, Jul 31, 2008 at 7:07 AM, Ben Greear <[EMAIL PROTECTED]> wrote: > LANforge i

Re: [Wireshark-dev] Patch to support decoding LANforge packets.

2008-07-30 Thread Jaap Keuter
Hi Ben, Normally we would request to open a bugreport on https://bugs.wireshark.org and attach the patch there so it won't be forgotten. The dissector itself looks oke, only thing is that it registers for all UDP and TCP ports. Isn't is possible to register them on a port(-range)? Thanx, Jaap

Re: [Wireshark-dev] Patch to support decoding LANforge packets.

2008-07-30 Thread Ben Greear
Jaap Keuter wrote: > Hi Ben, > > Normally we would request to open a bugreport on https://bugs.wireshark.org > and > attach the patch there so it won't be forgotten. > > The dissector itself looks oke, only thing is that it registers for all UDP > and > TCP ports. Isn't is possible to register