Re: [Wireshark-dev] : Plugin dissector not called when wireshark reassembles the message

2008-02-29 Thread Eli Ofenstein
I have had a similar issue with my plugin. What I see is the following behavior: . my dissector is called at the beginning of the PDU . my dissector calls tcp_dissect_pdus(). The length retrieval function yields the correct value for the PDU length, which exceeds the size of the current packet.

[Wireshark-dev] tcp_dissect_pdus() question

2008-02-13 Thread Eli Ofenstein
Hello I'm having an issue with tcp_dissect_pdus() that doesn't seem to be covered by existing documentation/discussion. I've ensured that the TCP dissector is functioning properly (i.e. subdissector reassembly is enabled, checksum validation is disabled to handle offloading, etc) and tested to ma