Re: [Wireshark-dev] [Wireshark-commits] rev 44435: /trunk/epan/ /trunk/epan/dissectors/: packet-afp.c packet-ncp2222.inc /trunk/epan/: epan.c expert.c expert.h proto.c proto.h

2012-08-11 Thread Joerg Mayer
On Fri, Aug 10, 2012 at 08:33:02PM +, ger...@wireshark.org wrote: http://anonsvn.wireshark.org/viewvc/viewvc.cgi?view=revrevision=44435 User: gerald Date: 2012/08/10 01:33 PM Log: Make the corresponding packet_info available to each tree item. This lets us pass a NULL pinfo to

Re: [Wireshark-dev] [Wireshark-commits] rev 44435: /trunk/epan/ /trunk/epan/dissectors/: packet-afp.c packet-ncp2222.inc /trunk/epan/: epan.c expert.c expert.h proto.c proto.h

2012-08-11 Thread Pascal Quantin
Le 11 août 2012 à 08:26, Joerg Mayer jma...@loplof.de a écrit : On Fri, Aug 10, 2012 at 08:33:02PM +, ger...@wireshark.org wrote: http://anonsvn.wireshark.org/viewvc/viewvc.cgi?view=revrevision=44435 User: gerald Date: 2012/08/10 01:33 PM Log: Make the corresponding packet_info

[Wireshark-dev] Unification of command line parameters for the sharks

2012-08-11 Thread Joerg Mayer
Hello List, this is a request for comments. I wanted to add half a dozen -d (decode as) options to wireshark and found that this feature does only exist for tshark and that -d is used by something else (initial display filter). My first idea was do rename -d on wireshark to something else and

Re: [Wireshark-dev] Unification of command line parameters for the sharks

2012-08-11 Thread Michael Tuexen
On Aug 11, 2012, at 1:20 PM, Joerg Mayer wrote: Hello List, this is a request for comments. I wanted to add half a dozen -d (decode as) options to wireshark and found that this feature does only exist for tshark and that -d is used by something else (initial display filter). My first

[Wireshark-dev] dumpcap.c:1796:5: error: signed and unsigned type in conditional expression

2012-08-11 Thread Toralf Förster
Hhm, compiling wireshark's svn tree (1) I get : cc1: warnings being treated as errors dumpcap.c: In function ‘cap_pipe_select’: dumpcap.c:1796:5: error: signed and unsigned type in conditional expression dumpcap.c:1796:5: error: signed and unsigned type in conditional expression make[2]: ***

Re: [Wireshark-dev] dumpcap.c:1796:5: error: signed and unsigned type in conditional expression

2012-08-11 Thread Michael Tuexen
On Aug 11, 2012, at 3:42 PM, Toralf Förster wrote: Hhm, compiling wireshark's svn tree (1) I get : cc1: warnings being treated as errors dumpcap.c: In function ‘cap_pipe_select’: dumpcap.c:1796:5: error: signed and unsigned type in conditional expression dumpcap.c:1796:5: error:

[Wireshark-dev] Passing data from Plugin dissector to a standard wireshark dissector (i.e. TCP)

2012-08-11 Thread hammad kabir
Hi all, I have recently implemented a wireshark dissector of a relatively simple protocol (lets call the protocol as COOL) for a project of mine. This dissector gets the data from IP layer and then parses it according to protocol definition of COOL protocol. (so far its good). But, next step