Re: [Wireshark-dev] Release early, release often? - What about a new release? (Preference files copy?)

2006-07-11 Thread Stephen Fisher
On Tue, Jul 11, 2006 at 09:37:50PM +0200, Thomas Anders wrote: > Guy Harris wrote: > > when trying to open a file in the Wireshark configuration file > > directory, if it's not found there, check in the Ethereal > > configuration file directory and, if it's found there, copy it to > > the

Re: [Wireshark-dev] Release early, release often? - What about a new release? (Preference files copy?)

2006-07-11 Thread Thomas Anders
Guy Harris wrote: > Is there any reason why > > when trying to open a file in the Wireshark configuration file > directory, if it's not found there, check in the Ethereal configuration > file directory and, if it's found there, copy it to the Wireshark > configuration file directory > >

Re: [Wireshark-dev] making register.c - python problem

2006-07-11 Thread Cook, Timothy
The following is from an email I sent to the DEV list without response. This is how I fixed the problem locally. Using OS: Win XP SP2 Dev Env: MS VC 6 & CYGWIN The changes merged into .\epan\dissectors\Makefile.nmake Rev 18391 broke my build. I believe there are several other makefile.nmake fil

Re: [Wireshark-dev] Set button label in GTK 1.2

2006-07-11 Thread Ulf Lamping
Tinoshi Kitazawa wrote: > Hi, > > I was looking through the wireshark code to find a way to set the > label in a GtkButton with Gtk1.x and I've found this (in > gtk\simple_dialog.c): > > #if GTK_MAJOR_VERSION >= 2 > /* XXX - find a way to set the GtkButton label in GTK 1.x */ > gtk_bu

[Wireshark-dev] making register.c - python problem

2006-07-11 Thread Nina Pham
I have python installed on C:/python24/python.exe, and set this in config.nmake. However, I have following permission denied error: Making register.c (using python) C:/python24/python.exe: can't open file '..': [Errno 13] Permission denied NMAKE : fatal error U1077: 'C:/python24/python.exe' : ret

Re: [Wireshark-dev] Packet reassembling

2006-07-11 Thread ronnie sahlberg
create a conersation for each tcp session to track the packets. or use tcp_dissect_pdus() which will do that for you. On 7/11/06, Gerhard Gappmeier <[EMAIL PROTECTED]> wrote: > Hello > > I have read the chapter about packet reassembling. > It's clear except from one point. > > If a server has mu

[Wireshark-dev] problem switching to wireshark from ethereal

2006-07-11 Thread Nina Pham
I followed the switch note of Gerald and failed to relocate using tortoise. I'm using the latest tortoisesvn1.3.5 and tried to relocate to http://anonsvn.wireshark.org/witeshark/trunk. I got the message working copy relocated to the wireshark trunk, but when I did the svn update, it updated to

Re: [Wireshark-dev] Release early, release often? - What about a new release? (Preference files copy?)

2006-07-11 Thread Guy Harris
Anders Broman (AL/EAB) wrote: > In my opinion it depends on how big the problem you are trying to solve > realy is and how complicated it will be > To design a well working solution, sometimes the cure is worse than the > illnes. Is there any reason why when trying to open a file in the

[Wireshark-dev] Set button label in GTK 1.2

2006-07-11 Thread Tinoshi Kitazawa
Hi,   I was looking through the wireshark code to find a way to set the label in a GtkButton with Gtk1.x and I've found this (in gtk\simple_dialog.c):   #if GTK_MAJOR_VERSION >= 2    /* XXX - find a way to set the GtkButton label in GTK 1.x */    gtk_button_set_label(GTK_BUTTON(ask_cb), tex

[Wireshark-dev] Packet reassembling

2006-07-11 Thread Gerhard Gappmeier
Hello I have read the chapter about packet reassembling. It's clear except from one point. If a server has multiple TCP connections to different clients, the captured packets can be mixed up from different messages. How is this kept in mind? Is this tracked automagically by "fragment_add_seq_

Re: [Wireshark-dev] Endianess

2006-07-11 Thread Gerhard Gappmeier
Hi, I was searching the hole day, but found the answer myself 5 minutes after sending the mail ;-) For all others that have the same question: tvb_get_letohl() can be used instead of an own function to convert little endian byte order to host byte order. mit freundlichen Grüßen / best regard

[Wireshark-dev] Endianess

2006-07-11 Thread Gerhard Gappmeier
Hello, I'm currently developing a new dissector plugin. Because the protocol is LittleEndian and not BigEndian I cannot use ntohX(). I need to convert when ntoh does nothing and vice versa. To be portable I'm using such a code fragment: #ifdef BigEndian # define ua_ntohs(x) (((x & 0xff) << 8)

[Wireshark-dev] [patch] rsvp/ospf dste extensions

2006-07-11 Thread Francesco Fondelli
You find attached a patch file (against svn rev. 18710) to dissect: Protocol Extensions for Support of Diffserv-aware MPLS Traffic Engineering (DSTE) as per RFC 4124. I have used and fuzz-tested this code. Please check it in. thanks, Ciao FF dste.patch Description: Binary data

Re: [Wireshark-dev] Release early, release often? - What about a new release?

2006-07-11 Thread Jacques, Olivier \(OpenCall Test Infra\)
Don't want to start a flaming or anything like that there ;) > That's not a very user friendly point of view. > > "Why should I take care of the preference settings, I was > able to copy > things over so others can do this as well" >From what I can watch in real life Wireshark/Ethereal usage,

Re: [Wireshark-dev] Release early, release often? - What about a new release? (Preference files copy?)

2006-07-11 Thread Anders Broman \(AL/EAB\)
Hi, In my opinion it depends on how big the problem you are trying to solve realy is and how complicated it will be To design a well working solution, sometimes the cure is worse than the illnes. For Windows it seems like we have reasonable solution, how complicated will it be to do a solution for

Re: [Wireshark-dev] Release early, release often? - What about a new release?

2006-07-11 Thread Ulf Lamping
Jacques, Olivier (OpenCall Test Infra) wrote: > I don't see that as a pre-requisite. IMHO we should keep things simple > and have only a mention in the release notes that Ethereal preferences > are not retrieved. > That's not a very user friendly point of view. "Why should I take care of the p

Re: [Wireshark-dev] Funky packet, bad capture, bad display or what?

2006-07-11 Thread Guy Harris
John McDermott wrote: > A friend sent me a trace with this packet: > Frame 1 (78 bytes on wire, 78 bytes captured) > Arrival Time: Jul 9, 2006 13:58:01.527266000 > Time delta from previous packet: 0.0 seconds > Time since reference or first frame: 0.0 seconds >

Re: [Wireshark-dev] FW: Listen_rtp plugin

2006-07-11 Thread Guy Harris
Anders Broman (AL/EAB) wrote: > Alejandro I think your proposed plugin looks realy good and something we > would have use for. > From the recent mails I'm a bit confused to where we stand on this. I > think Guy had some comments > on the implementation, is that beeing worked on or is further >

[Wireshark-dev] FW: Listen_rtp plugin

2006-07-11 Thread Anders Broman \(AL/EAB\)
Title: FW: Listen_rtp plugin Hi, Alejandro I think your proposed plugin looks realy good and something we would have use for.  From the recent mails I'm a bit confused to where we stand on this. I think Guy had some comments on the implementation, is that beeing worked on or is further di

Re: [Wireshark-dev] Release early, release often? - What about a new release?

2006-07-11 Thread Jacques, Olivier \(OpenCall Test Infra\)
> > > No one has had the time to get the ethereal/wireshark > configuration > > > reading stuff sorted out. Anyone have any idea how > invasive that would be? > > > Maybe a waiting point for 0.99.2 branch, which cannot be > released without > > > this anyway, IMHO. I don't see that as a pre-req