Re: [Wireshark-dev] Subdissectors for HTTP connect traffic

2006-08-14 Thread Joerg Mayer
On Mon, Aug 14, 2006 at 03:58:39PM -0700, Stephen Fisher wrote: > Thanks. Could you apply the attached patch also to finish it off - I > failed to include it in the original e-mail. Sorry about that. Committed revision 18906. Thanks! Joerg ___ Wi

Re: [Wireshark-dev] Solaris buildbot complains about zlib

2006-08-14 Thread Gerald Combs
Guy Harris wrote: > On Aug 14, 2006, at 1:25 PM, Gerald Combs wrote: > >> It looks like the auto* packages needed to be updated. > > I.e., the X11 on the Solaris buildbot machine *doesn't* have the > crufty old zlib? (I.e., it either has a shiny new zlib or relies on > zlib being present in

[Wireshark-dev] RTP MP2T dissector

2006-08-14 Thread Erwin Rol
Hello all, Attached a dissector that dissects RTP with MP2T (MPEG2 Transport Stream) traffic. Currently it dissects the header of the MPEG2 TS packets the payload is only shown as FT_BYTES. I am working on dissecting all payloads too, but i would like to ask to add the current state already,

Re: [Wireshark-dev] Subdissectors for HTTP connect traffic

2006-08-14 Thread Stephen Fisher
On Mon, Aug 14, 2006 at 11:46:23PM +0200, Joerg Mayer wrote: > > Committed revision 18901. Thanks. Could you apply the attached patch also to finish it off - I failed to include it in the original e-mail. Sorry about that. Steve Index: epan/dissectors/packet-http.c

Re: [Wireshark-dev] [Wireshark-commits] rev 18856: /trunk/ /trunk/epan/dissectors/: packet-ipsec.c /trunk/tools/: win32-setup.sh /trunk/: Makefile.nmake config.h.win32 config.nmake

2006-08-14 Thread Gerald Combs
Joerg Mayer wrote: > The proper fix would propably be what you propose: Make the portocol > preference gui add scrollbars on demand. Done. ___ Wireshark-dev mailing list Wireshark-dev@wireshark.org http://www.wireshark.org/mailman/listinfo/wireshark-dev

Re: [Wireshark-dev] Solaris buildbot complains about zlib

2006-08-14 Thread Guy Harris
On Aug 14, 2006, at 1:25 PM, Gerald Combs wrote: > It looks like the auto* packages needed to be updated. I.e., the X11 on the Solaris buildbot machine *doesn't* have the crufty old zlib? (I.e., it either has a shiny new zlib or relies on zlib being present in the system environment?) If s

Re: [Wireshark-dev] Subdissectors for HTTP connect traffic

2006-08-14 Thread Joerg Mayer
On Fri, Jul 21, 2006 at 05:22:21PM -0700, Stephen Fisher wrote: > > Attached is a patch to packet-http.c that calls a subdissector for > traffic flowing through a proxy via the HTTP CONNECT method. Most > protocols, especially SSL, can be tunneled through an HTTP proxy. > Wireshark currently

Re: [Wireshark-dev] Small patch for l2tp numbers

2006-08-14 Thread Joerg Mayer
On Sat, Jul 22, 2006 at 09:11:26PM -0400, Carlos Pignataro wrote: > Please find attached a patch with updates to l2tpv3's l2_sublayer_vals > and pw_types_vals numbers (and pw type decoding). Committed revision 18900. Thanks! Joerg ___ Wireshark-dev m

Re: [Wireshark-dev] Small patch for l2tp numbers

2006-08-14 Thread Carlos Pignataro
Joerg, On 8/10/2006 8:49 AM, Joerg Mayer allegedly said the following: > On Sat, Jul 22, 2006 at 09:11:26PM -0400, Carlos Pignataro wrote: >> Please find attached a patch with updates to l2tpv3's l2_sublayer_vals >> and pw_types_vals numbers (and pw type decoding). > >> @@ -462,35 +468,20 @@ >>

Re: [Wireshark-dev] Solaris buildbot complains about zlib

2006-08-14 Thread Thomas Anders
Gerald Combs wrote: > libtool: link: > `/export/home/calmeida/build/net-snmp-5.3.0.1/cswstage/opt/csw/lib/libnetsnmp.la' > is not a valid libtool archive net-snmp 5.3.1 is out. I'd suggest upgrading while you're at it. +Thomas -- Thomas Anders (thomas.anders at blue-cable.de) _

Re: [Wireshark-dev] Solaris buildbot complains about zlib

2006-08-14 Thread Gerald Combs
Jaap Keuter wrote: > Hi Gerald, > > This is from the configure log of the Solaris buildbot: > .. > checking whether to use zlib for reading compressed capture files... yes > checking zlib.h usability... yes > checking zlib.h presence... yes > checking for zlib.h... yes > checking for gzgets in

Re: [Wireshark-dev] RFC: New "Conversation Filter" entry in the context menu of the packet list

2006-08-14 Thread Stephen Fisher
On Sun, Aug 13, 2006 at 12:51:58AM +0200, Ulf Lamping wrote: > I've just added a new entry to the packet list context menu: > "Conversation Filter". > We might want to enhance this with other possibilities like "not TCP", > "Prepare TCP" and alike and for other protocols as well. > > Motivatio

[Wireshark-dev] README.developer spelling corrections

2006-08-14 Thread Stephen Fisher
I ran doc/README.developer through a spell checker and conservatively changed misspelled words. Attached is a compressed patch with the corrections. Steve README.developer.patch.gz Description: Binary data ___ Wireshark-dev mailing list Wireshark-

Re: [Wireshark-dev] 64bit math

2006-08-14 Thread Erwin Rol
Guy Harris wrote: > Erwin Rol wrote: > > >> If i remember right 64bit is a bit problematic due to portability, >> > > Some 64-bit arithmetic snuck into the code base a while ago, and nobody > complained, so we're now allowing it. > > Use "gint64" and "guint64" for 64-bit signed and unsigne

Re: [Wireshark-dev] 64bit math

2006-08-14 Thread Guy Harris
Erwin Rol wrote: > If i remember right 64bit is a bit problematic due to portability, Some 64-bit arithmetic snuck into the code base a while ago, and nobody complained, so we're now allowing it. Use "gint64" and "guint64" for 64-bit signed and unsigned integral values, respectively. We have

[Wireshark-dev] 64bit math

2006-08-14 Thread Erwin Rol
Hey all, If i remember right 64bit is a bit problematic due to portability, so i have a question, how do i do the following in a "correct" way. For mpeg transport stream dissecting i need to get a a 42bit value from 48bits, the first 33bit are the "base" than 6 bits reserved and than 9 bits "e

Re: [Wireshark-dev] compiling wireshark without msvc

2006-08-14 Thread Kukosa, Tomas
Hello, I used Borlad free C/C++ compiler for plugin few years ago. I affraid I could find only makefile but not source for it. Od: [EMAIL PROTECTED] za uživatele Manuel Jung Odesláno: po 14.8.2006 9:15 Komu: wireshark-dev@wireshark.org Předmět: Re: [Wireshark-

Re: [Wireshark-dev] compiling wireshark without msvc

2006-08-14 Thread Manuel Jung
Ulf Lamping wrote: >It should be possible to use plugins compiled under cygwin with the official >>Wireshark version, at least I don't see any reason against it. It's simply a >>DLL which is loaded from a specific directory. > >However, please note that the plugin ABI isn't stable, so you need a