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

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

Re: [Wireshark-dev] [PATCH]: enhanced "what's past last mpls label?" heuristic

2008-07-09 Thread Francesco Fondelli
On Wed, Jul 9, 2008 at 12:22 AM, Jaap Keuter <[EMAIL PROTECTED]> wrote: > Hi, Hi, > If you submitted this in the bug database there is no need to post it here as > well. That's all. I see. I thought was still useful for someone to have a reference in wireshark-dev ml as well. Next time I'll us

[Wireshark-dev] [Dev] parsing an excel file a nd adating the data to wireshark's functions

2008-07-09 Thread Geraud Berthomier
Hello everybody, I'm developping a plugin for a new protocol which have a main particularity : its frames are all different. Indeed, the data part of the frame is different for each frame and I have to pick up the traduction of these data parts in an excel file (I can use .csv, .xml or .xls).

[Wireshark-dev] Wireshark version

2008-07-09 Thread Martin Corraine (mcorrain)
Hello, Is there a reason the new version of the win32 Wireshark says 1.0.0 instead of 1.0.1? -martin ___ Wireshark-dev mailing list Wireshark-dev@wireshark.org https://wireshark.org/mailman/listinfo/wireshark-dev

Re: [Wireshark-dev] Wireshark version

2008-07-09 Thread Guillaume Bienkowski
Le Wed, 9 Jul 2008 14:36:22 +0200, "Martin Corraine (mcorrain)" <[EMAIL PROTECTED]> a écrit : > Hello, > > Is there a reason the new version of the win32 Wireshark says 1.0.0 > instead of 1.0.1? > > -martin > > In the release notes, we can see: New and Updated Features The following fea

Re: [Wireshark-dev] Wireshark version

2008-07-09 Thread Jeff Morriss
Martin Corraine (mcorrain) wrote: > Hello, > > Is there a reason the new version of the win32 Wireshark says 1.0.0 > instead of 1.0.1? Where does it say that? In Help->About my Windows Wireshark says: Version 1.0.1 (SVN Rev 25639) ___ Wireshark-de

Re: [Wireshark-dev] Wireshark version

2008-07-09 Thread Luis EG Ontanon
I saw a report on this ML of someone downloading the 1.0.0 installer from the 1.0.1 link... is this another case? On Wed, Jul 9, 2008 at 2:59 PM, Jeff Morriss <[EMAIL PROTECTED]> wrote: > > > Martin Corraine (mcorrain) wrote: >> Hello, >> >> Is there a reason the new version of the win32 Wiresha

Re: [Wireshark-dev] Wireshark version

2008-07-09 Thread Martin Corraine (mcorrain)
Yes. I go to the main wireshark.org home page and click on the download version 1.0.1. But the file says version 1.0.0. Then when I installed it I made sure it wasn't a typo. -martin -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Luis EG Ontanon Sent:

Re: [Wireshark-dev] Wireshark version

2008-07-09 Thread Luis EG Ontanon
Try cleaning the cache of your browser. On Wed, Jul 9, 2008 at 3:07 PM, Martin Corraine (mcorrain) <[EMAIL PROTECTED]> wrote: > Yes. I go to the main wireshark.org home page and click on the download > version 1.0.1. But the file says version 1.0.0. Then when I installed it > I made sure it wasn'

Re: [Wireshark-dev] Wireshark version

2008-07-09 Thread Martin Corraine (mcorrain)
Thanks Luis. That probably shouldn't be like that. -martin -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Luis EG Ontanon Sent: Wednesday, July 09, 2008 9:10 AM To: Developer support list for Wireshark Subject: Re: [Wireshark-dev] Wireshark version Try

[Wireshark-dev] how to caputer wimax R1 on windows platform

2008-07-09 Thread derick
Hi, Now I am working to get the R1 message of wimax. I use wireshark that plus m2m and wimax module to capture and I plug-in a wimax usb dongle. How should I do to get the R1 message via wireshark. Thanks for your help.I am looking forward your reply. 鍾委導 DerickChung ...

Re: [Wireshark-dev] INET6_ADDRSTRLEN redefinition

2008-07-09 Thread Martin Corraine (mcorrain)
ok, I got that error now. I wasn't using the 1.0.1 before. Did you find a work around? -martin From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Yunfan (Andy) Ying Sent: Tuesday, July 08, 2008 6:06 PM To: Developer support list for Wireshark Subject

Re: [Wireshark-dev] INET6_ADDRSTRLEN redefinition

2008-07-09 Thread Yunfan (Andy) Ying
Adding ifndef's seems to make it compile. In epan/dissectors/packet-ipv6.h: Change from: #define INET6_ADDRSTRLEN 46 To: #ifndef _WIN32 #define INET6_ADDRSTRLEN 46 #endif --Andy On Wed, Jul 9, 2008 at 9:24 AM, Martin Corraine (mcorrain) < [EMAIL PROTECTED]> wrote: > ok, I got that erro

Re: [Wireshark-dev] INET6_ADDRSTRLEN redefinition

2008-07-09 Thread Martin Corraine (mcorrain)
I also found that if you comment out "#GNUTLS_DIR=$(WIRESHARK_LIBS)\gnutls-2.3.8-1" under ssl decryption in the Wireshark/config.nmake file it builds. From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Martin Corraine (mcorrain) Sent: Wednesday, July 0

Re: [Wireshark-dev] plugin

2008-07-09 Thread Martin Corraine (mcorrain)
Hello Jaap, I built version 1.0.1 on win32 and have generated my plugin .dll. If I understand you correctly, I should be able to put this file in the "program files/wireshark/plugins/1.0.1" folder. This, however, doesn't work. What am I failing to do? Thanks, martin -Original Message- Fr

Re: [Wireshark-dev] plugin

2008-07-09 Thread Jaap Keuter
Hi, Please specify "doesn't work". Does it get loaded (see about wireshark, plugin tabs), doesn't it get called for frames you expect, does it crash, or something else? Is there a platform difference between the WS version you have installed and the plugin build? Is the CRT compatible? Stuff l

Re: [Wireshark-dev] plugin

2008-07-09 Thread Martin Corraine (mcorrain)
Sorry Jaap, The Wireshark 1.0.1 installer that I downloaded for win32 is where I dropped the plugin. The Wireshark build that it was created from was from http://www.wireshark.org/download/src/. I used the wireshark-1.0.0.tar.gz. After building the code and getting the plugin, I drop it in. I then

Re: [Wireshark-dev] INET6_ADDRSTRLEN redefinition

2008-07-09 Thread Jeff Morriss
Yunfan (Andy) Ying wrote: > Anyone else run into this issue while compiling Wireshark 1.0.1 on > Windows XP with VS2005? > > The INET6_ADDRSTRLEN defined in packet-ipv6.h seems to conflict with the > INET6_ADDRSTRLEN of ws2tcpip.h in the Platform SDK. A simple #ifndef > _WIN32 block around th

Re: [Wireshark-dev] INET6_ADDRSTRLEN redefinition

2008-07-09 Thread John Sullivan
On Wednesday, July 9, 2008, 5:47:45 PM, Yunfan (Andy) Ying wrote: > #ifndef _WIN32 > #define INET6_ADDRSTRLEN 46 > #endif It's probably better to directly #ifndef INET6_ADDRSTRLEN rather than assume that symbol will always be available alongside _WIN32. (The VS6 built-in headers have all the oth

[Wireshark-dev] defect 2656

2008-07-09 Thread Romel Khan
What is the process for scheduling and assigning defects? ___ Wireshark-dev mailing list Wireshark-dev@wireshark.org https://wireshark.org/mailman/listinfo/wireshark-dev

[Wireshark-dev] usb decoding

2008-07-09 Thread Gordon McNutt
Hello all, I'm interested in translating USB capture files from Total Phase Beagle USB analyzers into something wireshark will display. The Beagle comes with a GUI for displaying traffic, but wireshark would be cool because it could dissect what's going on inside the usb traffic (eg, SCSI, PPP, et

Re: [Wireshark-dev] serializing dissection tree to a file

2008-07-09 Thread Guy Harris
On Jul 7, 2008, at 4:08 PM, MARK LANDRISCINA wrote: > I need the ability to serialize/deserialize the dissection tree > (epan_dissect_t) filled in by epan_dissect_run. > > Is this functionality already available, or is this something that I > will have to write myself? If by "serialize ... t

Re: [Wireshark-dev] defect 2656

2008-07-09 Thread Guy Harris
On Jul 9, 2008, at 2:35 PM, Romel Khan wrote: > What is the process for scheduling and assigning defects? The process is that developers work on a bug if they have the time and interest. :-) (There is very little in the way of formal process for Wireshark development; it's a free software p

[Wireshark-dev] Dissector - how to reject packets

2008-07-09 Thread Barnes, Pat
The dissector I'm working on overrides the mbtcp dissector, to display a particular subset of the protocol in application-specific detail. My question is - what's the best way to reject those packets the dissector is not interested in? I thought that if the dissect_myprot function returned 0, the

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

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