Re: [Wireshark-dev] New GTK Glib Pango for Windows

2007-01-16 Thread Anders Broman
-Ursprungligt meddelande- Från: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] För Ulf Lamping Skickat: den 17 januari 2007 00:30 Till: Developer support list for Wireshark Ämne: Re: [Wireshark-dev] New GTK Glib Pango for Windows Anders Broman wrote: >> Hi, >> There's been a new update to t

[Wireshark-dev] CLS column / font problem

2007-01-16 Thread Stephen Fisher
Has anyone else noticed that the CLS time column is not wide enough for the contents when you start a new capture when using the date+time or just time? Adjusting the time precision fixes it. Opening a new capture file does not have this problem. I'm seeing this on Ethereal 0.99.0 and Wiresh

Re: [Wireshark-dev] New GTK Glib Pango for Windows

2007-01-16 Thread Ulf Lamping
Anders Broman wrote: > Hi, > There's been a new update to the GTK libraries do we want to bring them in > or is it to close to the release? > (The files are on our server). > Couldn't find the release notes - gtk.org doesn't even list the versions - so it's difficult to say if somethings intere

[Wireshark-dev] New GTK Glib Pango for Windows

2007-01-16 Thread Anders Broman
Hi, There's been a new update to the GTK libraries do we want to bring them in or is it to close to the release? (The files are on our server). BR Anders ___ Wireshark-dev mailing list Wireshark-dev@wireshark.org http://www.wireshark.org/mailman/listinfo

Re: [Wireshark-dev] [Patch] airpcap.c

2007-01-16 Thread Stephen Fisher
On Tue, Jan 16, 2007 at 12:01:17PM +0100, Gisle Vanem wrote: > --- SVN-Latest\epan\crypt\airpdcap.cFri Jan 12 17:23:52 2007 > +++ epan\crypt\airpdcap.c Tue Jan 16 11:59:58 2007 > @@ -1663,7 +1663,7 @@ > else > output_string = g_strdup_printf("%s:%

Re: [Wireshark-dev] [PATCH] strptime implicit declaration warning

2007-01-16 Thread Stephen Fisher
On Tue, Jan 16, 2007 at 06:21:44PM +0100, Sebastien Tandel wrote: > >a patch to avoid the warning "implicit declaration of function > 'strptime'" in editcap.c glib.h is included just after the define > __USE_XOPEN and include This was committed by Jaap as rev 20455. Steve __

Re: [Wireshark-dev] TCP packets reassemble mechanism

2007-01-16 Thread Stephen Fisher
On Tue, Jan 16, 2007 at 05:35:50PM +0200, sharon lin wrote: > I would like to understand the TCP reassemble mechanism. If I > configured it to work on top of TCP protocol from the "preferences" > dialog do I guaranteed to get reassembled (Full) packets to my > packet-dissector module. Did you

[Wireshark-dev] [PATCH] new dissector : Homeplug

2007-01-16 Thread Sebastien Tandel
Hi all, a re-post for the Homeplug dissector. (fuzz-tested) Regards, Sebastien Tandel Index: epan/etypes.h === --- epan/etypes.h (revision 20454) +++ epan/etypes.h (working copy) @@ -246,6 +246,10 @@ #define ETHER

[Wireshark-dev] [PATCH] proto_tree_add_item and range_string

2007-01-16 Thread Sebastien Tandel
Hi, Here is an updated patch for proto_tree_add_item and the range_string structure. The new macro RVALS() can be used as the macro VALS() in the declaration of your hf_register_info with another structure (range_string). Be aware that you *have to* ORed the value of the field display with BA

Re: [Wireshark-dev] Define dissector port

2007-01-16 Thread Jaap Keuter
Hi, Have a look in epan/packet.h and search for "heur". Thanx, Jaap On Tue, 16 Jan 2007, Hal Lander wrote: > I am still struggling with this. > Is there any documentation on heur_dissector_add and where/how to call it? > > Also I presume from Guy's posting I have to add my protocol into some >

Re: [Wireshark-dev] [Patch] packet-kerberos.c

2007-01-16 Thread Jaap Keuter
Hi, Implemented the suggestion, with slight modification. Moved glib.h inclusion up i.s.o. crypt-md5.h down because you've omitted the conditional. For easier handling could you attach the patches to the emails i.s.o. pasting them? Thanx, Jaap On Tue, 16 Jan 2007, Gisle Vanem wrote: > * must

Re: [Wireshark-dev] [Patch] packet-kerberos.c

2007-01-16 Thread Gisle Vanem
"Sake Blok" <[EMAIL PROTECTED]> wrote: > Looks like your mailserver is messing things up. In the attached rawmessage > there is a line: > X-MIME-Autoconverted: from base64 to 8bit by bryggen.bgnett.no id > =l0GCELid030303 > When I look at the same message in my mailbox, it is still base64encoded

Re: [Wireshark-dev] [PATCH] BACnet bacapp additions

2007-01-16 Thread Sebastien Tandel
Many thanks :) Regards, Sebastien Tandel Steve Karg wrote: > Hi Sebastien, > > >> Can you share a pcap trace of BACnet? >> > > There is a directory of unorganized BACnet captures in a directory on my > website: > http://kargs.net/captures/ > > You can use them for whatever you want

Re: [Wireshark-dev] [PATCH] BACnet bacapp additions

2007-01-16 Thread Steve Karg
Hi Sebastien, > Can you share a pcap trace of BACnet? There is a directory of unorganized BACnet captures in a directory on my website: http://kargs.net/captures/ You can use them for whatever you want. Arbitrary BACnet traces can also be generated using the BACnet VTS tool (vts.sourceforge

[Wireshark-dev] GUI update interval

2007-01-16 Thread cskiraly-munka
Does anyone know where can I speed up the update of the GUI a little bit? Thanks Csaba ___ Wireshark-dev mailing list Wireshark-dev@wireshark.org http://www.wireshark.org/mailman/listinfo/wireshark-dev

Re: [Wireshark-dev] Define dissector port

2007-01-16 Thread Hal Lander
I am still struggling with this. Is there any documentation on heur_dissector_add and where/how to call it? Also I presume from Guy's posting I have to add my protocol into some tables? Hal >From: "sharon lin" <[EMAIL PROTECTED]> >Reply-To: Developer support list for Wireshark > >To: "Develope

[Wireshark-dev] [PATCH] strptime implicit declaration warning

2007-01-16 Thread Sebastien Tandel
Hi, a patch to avoid the warning "implicit declaration of function 'strptime'" in editcap.c glib.h is included just after the define __USE_XOPEN and include Regards, Sebastien Tandel Index: editcap.c === --- editcap.c (révi

Re: [Wireshark-dev] [Wireshark-commits] rev 20442:/trunk/tools/lemon/ /trunk/tools/lemon/: lemon.c

2007-01-16 Thread Douglas Pratley
Thanks for the quick response (and the suggested work-around). This now seems to work for me. Cheers Doug -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Luis Ontanon Sent: 16 January 2007 16:56 To: Developer support list for Wireshark Subject: Re: [Wir

Re: [Wireshark-dev] [Wireshark-commits] rev 20442: /trunk/tools/lemon/ /trunk/tools/lemon/: lemon.c

2007-01-16 Thread Luis Ontanon
Guys, I checked in r20452 that reverses the changes they did to my original fix (and I checked in later). This fix is not quite perfect (neither was theirs) as it haves meany #line directives ponting at the wrong place in the generated code, but it does have yy_destructor() to be called just once

Re: [Wireshark-dev] [PATCH] BACnet bacapp additions

2007-01-16 Thread Jaap Keuter
Hi, Checked in.. Thanx, Jaap On Tue, 16 Jan 2007, Steve Karg wrote: > Hi Developers, > > I added some text for enumerations that were added with addenda recently > approved for the BACnet standard. I compiled the changes using > Linux/GCC. The patch is a diff made using svn diff. > > Best Reg

Re: [Wireshark-dev] [Wireshark-commits] rev 20442: /trunk/tools/lemon/ /trunk/tools/lemon/: lemon.c

2007-01-16 Thread Martin Mathieson
Is this useful? Martin GNU gdb 6.2.1 Copyright 2004 Free Software Foundation, Inc. GDB is free software, covered by the GNU General Public License, and you are welcome to change it and/or distribute copies of it under certain conditions. Type "show copying" to see the conditions. There is absolut

Re: [Wireshark-dev] [Wireshark-commits] rev 20442: /trunk/tools/lemon/ /trunk/tools/lemon/: lemon.c

2007-01-16 Thread Luis Ontanon
in order to avoid this one you just have to rename the dtds directory, no dtds directory no dtds get parsed. On 1/16/07, Douglas Pratley <[EMAIL PROTECTED]> wrote: > I get a similar crash under Windows. I'm having trouble reverting back > to a "good" baseline without losing today's work, so it wou

Re: [Wireshark-dev] Define dissector port

2007-01-16 Thread sharon lin
Add heur_dissector_add("udp", dissect_fring, proto_fring); heur_dissector_add("tcp", dissect_fring, proto_fring); On 1/16/07, Hal Lander <[EMAIL PROTECTED]> wrote: The word 'heuristic' only appears once in 'readme.developer', and although I have skimmed through the whole document I seem to ha

Re: [Wireshark-dev] Define dissector port

2007-01-16 Thread Hal Lander
The word 'heuristic' only appears once in 'readme.developer', and although I have skimmed through the whole document I seem to have missed where it tells you how to make a dissector heuristic. Can you be more specific about where there is an example? Can plugins be heuristic dissectors? Once a

Re: [Wireshark-dev] [Wireshark-commits] rev 20442: /trunk/tools/lemon/ /trunk/tools/lemon/: lemon.c

2007-01-16 Thread Luis Ontanon
They commited what we got in rev 20447. As this does not happen to me (I'm running with MallocBadFreeAbort) I would need a a backtrace where the yyminor value passed to DtdParse() shows up. can you -DDEBUG_DTD_PARSER and send in the trace for the parser. Thanks. Luis On 1/16/07, Douglas Pratle

[Wireshark-dev] TCP packets reassemble mechanism

2007-01-16 Thread sharon lin
Hi, I would like to understand the TCP reassemble mechanism. If I configured it to work on top of TCP protocol from the "preferences" dialog do I guaranteed to get reassembled (Full) packets to my packet-dissector module. Sharon. ___ Wireshark-dev maili

Re: [Wireshark-dev] [PATCH] BACnet bacapp additions

2007-01-16 Thread Sebastien Tandel
Hi Steve, Can you share a pcap trace of BACnet? Regards, Sebastien Tandel Steve Karg wrote: > Hi Developers, > > I added some text for enumerations that were added with addenda > recently approved for the BACnet standard. I compiled the changes > using Linux/GCC. The patch is a diff made u

[Wireshark-dev] [PATCH] BACnet bacapp additions

2007-01-16 Thread Steve Karg
Hi Developers, I added some text for enumerations that were added with addenda recently approved for the BACnet standard. I compiled the changes using Linux/GCC. The patch is a diff made using svn diff. Best Regards, Steve bacapp.patch.gz Description: GNU Zip compressed data __

Re: [Wireshark-dev] [Wireshark-commits] rev 20442: /trunk/tools/lemon/ /trunk/tools/lemon/: lemon.c

2007-01-16 Thread Douglas Pratley
I get a similar crash under Windows. I'm having trouble reverting back to a "good" baseline without losing today's work, so it would be great if this could be fixed... I'm afraid I can't work out quite what the dependencies are here. Cheers Doug -Original Message- From: [EMAIL PROTECTED]

Re: [Wireshark-dev] [Patch] packet-kerberos.c

2007-01-16 Thread Sebastien Tandel
just kidding about OE ... but as said it's all right here for me. Regards, Sebastien Tandel Gisle Vanem wrote: > "Sebastien Tandel" <[EMAIL PROTECTED]> wrote: > >>> PS. What's up with the mailing-list software? Every message looks >>> like> crap; all line-endings are missing. Is the ML-software r

Re: [Wireshark-dev] [Patch] packet-kerberos.c

2007-01-16 Thread Sake Blok
On Tue, Jan 16, 2007 at 01:33:00PM +0100, Gisle Vanem wrote: > "Sebastien Tandel" <[EMAIL PROTECTED]> wrote: > > >>PS. What's up with the mailing-list software? Every message looks like> > >>crap; all line-endings are missing. Is the ML-software running on a Mac?> > >>Everything's fine here ...

Re: [Wireshark-dev] [Patch] packet-kerberos.c

2007-01-16 Thread Gisle Vanem
"Gisle Vanem" <[EMAIL PROTECTED]> wrote: > I.e. double newlines are collapsed into one: > > line 1 > > line 2 That message got received okay. Presumably because it contained a "Content-type: multipart/mixed;..." in the header. --gv ___ Wireshark-d

Re: [Wireshark-dev] [Patch] packet-kerberos.c

2007-01-16 Thread Gisle Vanem
"Sebastien Tandel" <[EMAIL PROTECTED]> wrote: PS. What's up with the mailing-list software? Every message looks like> crap; all line-endings are missing. Is the ML-software running on a Mac?> Everything's fine here ... maybe a new feature of Outlook Express? :-p It's not an OE issue. I'm sub

[Wireshark-dev] [Patch] libwireshark.def

2007-01-16 Thread Gisle Vanem
Some missing exports (needed by airpdcap*.c): --- SVN-Latest\epan\libwireshark.defTue Jan 16 11:07:52 2007 +++ epan\libwireshark.def Tue Jan 16 13:08:05 2007 @@ -91,6 +91,8 @@ convert_string_to_hex copy_prefs crc16_ccitt_tvb +crc32_ccitt +crc32_ccitt_table DATA create_d

Re: [Wireshark-dev] [Wireshark-commits] rev 20442: /trunk/tools/lemon/ /trunk/tools/lemon/: lemon.c

2007-01-16 Thread Jaap Keuter
Hi, Maybe not, since it seems to have broken the program completely. (gdb) run Starting program: /home/me/src/wireshark/trunk/.libs/lt-tshark Failed to read a valid object file image from memory. [Thread debugging using libthread_db enabled] [New Thread -1233094432 (LWP 25812)] Program received

Re: [Wireshark-dev] [Patch] packet-kerberos.c

2007-01-16 Thread Sebastien Tandel
> PS. What's up with the mailing-list software? Every message looks like > crap; all line-endings are missing. Is the ML-software running on a Mac? > Everything's fine here ... maybe a new feature of Outlook Express? :-p Regards, Sebastien Tandel ___

[Wireshark-dev] [Patch] packet-kerberos.c

2007-01-16 Thread Gisle Vanem
* must come after because of 'guint8' etc. * Include because of eth_fopen(). --- SVN-Latest\epan\dissectors\packet-kerberos.cWed Jan 03 17:26:35 2007 +++ epan\dissectors\packet-kerberos.c Tue Jan 16 12:44:55 2007 @@ -71,12 +71,12 @@ #include #include #endif -#include #includ

Re: [Wireshark-dev] [Patch] airpcap.c

2007-01-16 Thread Sebastien Tandel
sorry you're right, part of code not compiled on my computer. Sebastien Tandel wrote: > Ouch, I don't have this one on the latest svn version ... :-/ > > > Gisle Vanem wrote: > >> --- SVN-Latest\epan\crypt\airpdcap.cFri Jan 12 17:23:52 2007 >> +++ epan\crypt\airpdcap.c Tue Jan 16 11:5

Re: [Wireshark-dev] [Wireshark-commits] rev 20442:/trunk/tools/lemon/ /trunk/tools/lemon/: lemon.c

2007-01-16 Thread Anders Broman \(AL/EAB\)
Hi, I have filed a bug with sqlite. BR Anders -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Joerg Mayer Sent: den 16 januari 2007 11:57 To: wireshark-dev@wireshark.org Subject: Re: [Wireshark-dev] [Wireshark-commits] rev 20442:/trunk/tools/lemon/ /trunk/

Re: [Wireshark-dev] [Patch] airpcap.c

2007-01-16 Thread Sebastien Tandel
Ouch, I don't have this one on the latest svn version ... :-/ Gisle Vanem wrote: > --- SVN-Latest\epan\crypt\airpdcap.cFri Jan 12 17:23:52 2007 > +++ epan\crypt\airpdcap.c Tue Jan 16 11:59:58 2007 > @@ -1663,7 +1663,7 @@ > else > output_string =

[Wireshark-dev] [Patch] airpcap.c

2007-01-16 Thread Gisle Vanem
--- SVN-Latest\epan\crypt\airpdcap.cFri Jan 12 17:23:52 2007 +++ epan\crypt\airpdcap.c Tue Jan 16 11:59:58 2007 @@ -1663,7 +1663,7 @@ else output_string = g_strdup_printf("%s:%s:%s", STRING_KEY_TYPE_WPA_PWD,dk->key->str,

Re: [Wireshark-dev] [Wireshark-commits] rev 20442: /trunk/tools/lemon/ /trunk/tools/lemon/: lemon.c

2007-01-16 Thread Joerg Mayer
On Mon, Jan 15, 2007 at 07:48:06PM +, [EMAIL PROTECTED] wrote: > http://anonsvn.wireshark.org/viewvc/viewvc.cgi?view=rev&revision=20442 > > User: lego > Date: 2007/01/15 07:48 PM > > Log: > Fix a major leakage of token minors in lemon generated parsers due to the > fact that lemon was not g