Re: [Wireshark-dev] Calling chained dissector only once and modifying payload for further processing

2018-04-14 Thread Jeswin Mathai
Hi Peter, Thanks for the reply, and Yes I'm storing the modified payload in a table. and fetching it whenever the dissector is called again. I was little worried about memory consumption since maintaining a table for 100k packets sounds a little heavy. and thought there was some other alternative

Re: [Wireshark-dev] Calling chained dissector only once and modifying payload for further processing

2018-04-14 Thread Peter Wu
Hi Jeswin, On Thu, Apr 12, 2018 at 12:45:21PM +, Jeswin Mathai wrote: > want to modify payload of a packet before it is processed by its desired > dissector. I've written a chained dissector in lua, which modifies the tvb > and then calls the next dissector with the modified tvb. The plugins i