Re: [Wireshark-dev] Add the next Tvb packet to current tvb before dissecting

2009-08-17 Thread Clifford Sibanda
the whole packet is available. Definitely much easier than I thought. Regards Clifford From: wsgd To: Developer support list for Wireshark Sent: Friday, August 14, 2009 9:08:10 PM Subject: Re: [Wireshark-dev] Add the next Tvb packet to current tvb before dissectin

Re: [Wireshark-dev] Add the next Tvb packet to current tvb before dissecting

2009-08-14 Thread Stephen Fisher
On Aug 14, 2009, at 6:40 AM, Clifford Sibanda wrote: > Now I just need to figure out how to get my columns info and my > protocol tree to reappear because now all I get is my packet in the > TCP protocol tree and column information indicating that it is a TCP > reassembled packet. That is

Re: [Wireshark-dev] Add the next Tvb packet to current tvb before dissecting

2009-08-14 Thread wsgd
doing wrong here > > > > I have taken note of void assignment by next_tvb= > > And i have removed it but I suppose if I can get the tcp_dissect_pdus > > to work for me the better because my protocol is running atop tcp. > > > > Regards > &

Re: [Wireshark-dev] Add the next Tvb packet to current tvb before dissecting

2009-08-14 Thread Clifford Sibanda
20:07 PM Subject: Re: [Wireshark-dev] Add the next Tvb packet to current tvb before dissecting The warning is saying that the parameter 'pinfo' is NOT used inside the function. It is not important. Try this : "packet_info *pinfo _U_," instead of "packet_info *pinfo,&quo

Re: [Wireshark-dev] Add the next Tvb packet to current tvb before dissecting

2009-08-13 Thread wsgd
I have taken note of void assignment by next_tvb= > And i have removed it but I suppose if I can get the tcp_dissect_pdus > to work for me the better because my protocol is running atop tcp. > > Regards > > Clifford > ------------------------------------

Re: [Wireshark-dev] Add the next Tvb packet to current tvb before dissecting

2009-08-12 Thread Clifford Sibanda
_pdus to work for me the better because my protocol is running atop tcp. Regards Clifford From: wsgd To: Developer support list for Wireshark Sent: Wednesday, August 12, 2009 8:27:38 PM Subject: Re: [Wireshark-dev] Add the next Tvb packet to current tvb b

Re: [Wireshark-dev] Add the next Tvb packet to current tvb before dissecting

2009-08-12 Thread wsgd
Hello, The displayed error says that tvb_set_child_real_data_tvbuff returns void (nothing). See epan/tvbuff.h So you are trying : next_tvb=void Other thing : I do not understand why you are trying to do reassembly by yourself since this is the goal of tcp_dissect_pdus. Olivier Clifford S

[Wireshark-dev] Add the next Tvb packet to current tvb before dissecting

2009-08-12 Thread Clifford Sibanda
Good day I would like to get some assistance if anyone out there can. I am working a plugin dissector that handles data from an asynchronous source. The asynchronous source first sends a packet with just the message length of the next packet which contains the real data. What i would love t

[Wireshark-dev] Add the next Tvb packet to current tvb before dissecting

2009-08-12 Thread Clifford Sibanda
Good day I would like to get some assistance if anyone out there can. I am working a plugin dissector that handles data from an asynchronous source. The asynchronous source first sends a packet with just the message length of the next packet which contains the real data. What i would love to d