[Wireshark-dev] DTAP dissector not getting called from my dissector

2007-05-23 Thread jaiswal.vikash
Hi , I've developed a dissector for understanding the wireshark , using an imaginary "test" protocol. But I'm facing a problem with it . When I try to call another dissector ( I'm calling "gsm_a_dtap") , I'm not getting any display for the wireshark gui . The bytes related to dtap are not at all

Re: [Wireshark-dev] patch for new encapsulation protocol FCoE - Fibre Channel over Ethernet

2007-05-23 Thread Jaap Keuter
Hi, The code looks oke, one question though. Why is the ethertype in a preference? Are there non-IEEE-ethertype-standard implementations in the wild, or is this a development left over? If so, better get it out. A sample capture would be usefull for fuzztesting, so yes please. Thanx, Jaap On Wed

[Wireshark-dev] UMTS RRC is quite large

2007-05-23 Thread Kukosa, Tomas
Hi, I try to regenerate UMTS RRC protocol from the last ASN.1 source and the result is quite large (5MB of source code and 5MB of Windows .obj file with debug info). I causes problem with MSVC 6.0 compilation (cvpack INTERNAL ERROR ...). One possible solution is to disable debug information for

[Wireshark-dev] patch for new encapsulation protocol FCoE - Fibre Channel over Ethernet

2007-05-23 Thread Joe Eykholt
Hello, Attached is a patch file and a new dissector for FCoE. This protocol is described at http://fcoe.com and has been submitted to T11. It is an encapsulation protocol that can be used to transport FC frames over raw Ethernet when the link is loss-free due to pause. The Ethertype 0x8906 ha

Re: [Wireshark-dev] wireshark help needed

2007-05-23 Thread Guy Harris
On May 22, 2007, at 8:16 AM, cedrik helou wrote: > We are a group of 3 Lebanese computer engineering students; we are > working on a project concerning the development of wireshark. We are > facing difficulties finding the wireshark internal database (where > it stores the paquets captured)

Re: [Wireshark-dev] ssl dissector errors when debugging

2007-05-23 Thread Brian Vandenberg
I just got a plugin I wrote awhile back compiling under 0.99.5 and tried to run it from within VS2005's debugger. I loaded up a dump file from tcpdump, then went into preferences & setup the SSL dissector. As soon as I hit apply I received a message saying: -=-=-=-=-=-=-=-=-=- Windows has t

Re: [Wireshark-dev] asn1_ctx_t introduced in more BER functions

2007-05-23 Thread Anders Broman
Hi, Ooops probably an oversight when doing the transition. Please check revision 21912. Best regards Anders -Ursprungligt meddelande- Från: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] För [EMAIL PROTECTED] Skickat: den 23 maj 2007 14:34 Till: Developer support list for Wireshark Ämne: Re:

Re: [Wireshark-dev] "Save ... before ..." dialogs: "Yes/No/Cancel" buttons for all ?

2007-05-23 Thread Ulf Lamping
Bill Meier wrote: > Guy Harris wrote: > > >> The example in the GNOME HIG (figure 3.17 on the GNOME HIG page linked >> from my previous message) offers "Close without Saving", "Cancel", and >> "Save"; that seems to be their recommendation. >> >> The KDE HIG offers "Save", "Discard", and "Cance

Re: [Wireshark-dev] Arrays of Value String arrays?

2007-05-23 Thread Kevin A. Noll
I thought about doing it this way. It would make building the proto_tree a little dorky, but doable. I'm still left, though, with how to construct my header field definitions. I could create a hf definition for every group that would match with the value_string definitions, but this would make d

[Wireshark-dev] Dissection of multiple PDUs in one TCP Segment

2007-05-23 Thread Robert Naumann
Hello, i'm new to the dissector developement for wireshark. I've read that it should be actually possible to dissect multiple PDUs from one TCP Segment with tcp_dissect_pdus(), but i don't get it working. For example: i've got 2 different PDUs with different lengths (5 and 6). I already got th

Re: [Wireshark-dev] Arrays of Value String arrays?

2007-05-23 Thread Kevin A. Noll
I thought about doing it this way. It would make building the proto_tree a little dorky, but doable. I'm still left, though, with how to construct my header field definitions. I could create a hf definition for every group that would match with the value_string definitions, but this would make

Re: [Wireshark-dev] Dissect multiple PDUs in one TCP Segment

2007-05-23 Thread Guy Harris
Robert Naumann wrote: > i'm new to the dissector developement for wireshark. I've read that it > should be actually possible to dissect multiple PDUs from one TCP > Segment with tcp_dissect_pdus(), but i don't get it working. > > For example: i've got 2 different PDUs with different lengths (5

Re: [Wireshark-dev] Packet Playback with Wireshark

2007-05-23 Thread Jaap Keuter
Hi, No. See http://wiki.wireshark.org/Tools Thanx, Jaap On Wed, 23 May 2007, James McLellan wrote: > Hi, > > Is there a capability in Wireshark (or a plugin) to > allow playback of captured packets? > > ___ Wireshark-dev mailing list Wireshark-dev@w

[Wireshark-dev] Dissect multiple PDUs in one TCP Segment

2007-05-23 Thread Robert Naumann
Hello, i'm new to the dissector developement for wireshark. I've read that it should be actually possible to dissect multiple PDUs from one TCP Segment with tcp_dissect_pdus(), but i don't get it working. For example: i've got 2 different PDUs with different lengths (5 and 6). I already got th

Re: [Wireshark-dev] Arrays of Value String arrays?

2007-05-23 Thread Joerg Mayer
On Wed, May 23, 2007 at 12:46:00PM -0400, Kevin A. Noll wrote: > > > I'm dissecting TLVs in the WLCCP protocol. The TLVs are defined in a > hierarchical manner, so the TLV is defined by a group_id and a type_id. ... > I'm wondering if I can define a 2-dimensional value_string array sort of > lik

[Wireshark-dev] Arrays of Value String arrays?

2007-05-23 Thread Kevin A. Noll
I'm dissecting TLVs in the WLCCP protocol. The TLVs are defined in a hierarchical manner, so the TLV is defined by a group_id and a type_id. I'm trying to set up my value_strings for displaying the group and type, but I'm not quite sure how to do this since the type_id is not unique between gro

Re: [Wireshark-dev] problems building in win32 environment

2007-05-23 Thread Anders Broman \(AL/EAB\)
Hi, That was a fault in a recent checkin of sctp_graph_dlg.c i think (resloved later) try a SVN update and rebuild. Regards Anders Från: [EMAIL PROTECTED] genom Brian Vandenberg Skickat: on 2007-05-23 01:32 Till: Developer support list for Wireshark Ämne: Re: [Wi

[Wireshark-dev] Packet Playback with Wireshark

2007-05-23 Thread James McLellan
Hi, Is there a capability in Wireshark (or a plugin) to allow playback of captured packets? Ready for the edge of your seat? Check out tonight's top picks on Yahoo! TV. http://tv.yahoo.com/ _

[Wireshark-dev] UNISTIM plugin

2007-05-23 Thread Newton, Don
I recently downloaded the pdf from Nortel that describes UNISTIN pretty thoroughly and I am probably 30% done fleshing out a plugin dissector (it's a very chatting protocol). I would like to contribute but don't want to open a legal can of worms. The protocol description was easy to find on the N

Re: [Wireshark-dev] problems building in win32 environment

2007-05-23 Thread Brian Vandenberg
I've ran into two problems building in win32. One machine using vs2005, the other vs6. The 2005 machine threw an error when trying to do the xcopy operation on line 475 of makefile.nmake, saying invalid # of parameters. I was able to fix this by changing ZLIB_DIR to use \s instead of /s,

[Wireshark-dev] [PATCH] - packet-isup-update-ansi-parameters.patch - fix several ansi isup parameters

2007-05-23 Thread Neil Ostroff
  Hello.     The enclosed patch updates the ansi isup dissector to support the following parameters:     1. Generic Name   2. Originating Line Info   3. Jurisdiction   4. Charge Number   5. Forward Call Indicator (bits M and N are now being decoded)   6. Cause Code (all values are now being decode

[Wireshark-dev] Curious appearance of tabs in About dialog

2007-05-23 Thread David Büchi
Hi, has anyone else noticed a curious appearance of the "tabs" in the "About Wireshark" dialog? They are placed on the top, but they look like bottom placed tabs, see attached screenshot. Is this a bug in GTK or a problem in Wireshark? Regards, Dave <>

Re: [Wireshark-dev] "Save ... before ..." dialogs: "Yes/No/Cancel" buttons for all ?

2007-05-23 Thread Bill Meier
Guy Harris wrote: > The example in the GNOME HIG (figure 3.17 on the GNOME HIG page linked > from my previous message) offers "Close without Saving", "Cancel", and > "Save"; that seems to be their recommendation. > > The KDE HIG offers "Save", "Discard", and "Cancel". > > Microsoft's "Commit b

Re: [Wireshark-dev] problems building in win32 environment

2007-05-23 Thread Ulf Lamping
> > Be aware that if you use VS2005 for Wireshark, you must also recompile > the adns_dll.dll due to CRT issues. The older VS project in adns has to > be converted to the new format. When I changed the build process to work with MSVC2005 I didn't had any problems with adns and VS2005, so I didn

Re: [Wireshark-dev] asn1_ctx_t introduced in more BER functions

2007-05-23 Thread Florent . Drouin
Hi Anders, I have done some tests (gsm_map,bssmap,camel,inap,gsm_ss), and I see a problem in gsm_ss_dissect (asn1/gsm_ss/packet-gsm_ss-template.c) To decode an USSD string, you have to give the actx pointer, when you call the decoding function (as this is done in Notify SS). Else, there is

Re: [Wireshark-dev] [PATCH] 64-bit Linux "All Warnings are Errors" Fixes

2007-05-23 Thread Florent . Drouin
Hello Mike, Thank you for the patch. I did check it and I have some proposal changes: 1) In epan/packet.c, epan/stream.c and wiretap/catapult_dct2000.c Change GPOINTER_TO_INT to GPOINTER_TO_UINT 2) In gtk/dcerpc_stat.c I did add a cast, (guint) to compile with a 32 bits linux system (s

Re: [Wireshark-dev] [PATCH] Improved support for MIPv4

2007-05-23 Thread Ville Nuorvala
On 5/18/07, Sebastien Tandel <[EMAIL PROTECTED]> wrote: > That's not too much resources ... simply run for a few passes > > tools/fuzztest.sh mip1.cap mip2.cap mip3.cap Oh, now your question makes sense! I hadn't noticed the script. The script ran on a test capture for a few thousand passes with

Re: [Wireshark-dev] problems building in win32 environment

2007-05-23 Thread Graham Bloice
Brian Vandenberg wrote: > A few things on this: I was mistaken about my 'fix'. I re-ordered the > parameters S.T. the /D /I /E /Y params came first, as well as switching > to using \s ... I think the former fixed it. > > Also, I got around the 2nd problem by switching to using VS2005 (I >

Re: [Wireshark-dev] problems building in win32 environment

2007-05-23 Thread Ulf Lamping
Brian Vandenberg wrote: > A few things on this: I was mistaken about my 'fix'. I re-ordered the > parameters S.T. the /D /I /E /Y params came first, as well as switching > to using \s ... I think the former fixed it. > > Also, I got around the 2nd problem by switching to using VS2005 (I > h

Re: [Wireshark-dev] OS X builder

2007-05-23 Thread Michael Tuexen
Hi Steve, It is an "old" dual G5 PowerMac, 2.5 GHz, and 2.5 GB RAM. running Mac OS X 10.4.9/PPC. Best regards Michael On May 23, 2007, at 1:08 AM, Stephen Fisher wrote: > On Tue, May 22, 2007 at 03:11:18PM -0700, Gerald Combs wrote: > >> Thanks to Michael Tuexen, we once again have a working OS