Hi, I'm writing a post-dissector, to process some bespoke TCP options. Im having problems processing the TCP options where the TCP packet is encapsulated. Since TVB is the full buffer, I just want the offset of the TCP.OPTIONS ? and process that! or even better, how can i just take the tcp.options userdata, and process that? - I have to iterate over the tcp option data, as there can be many OPTIONS thanks asked 25 Mar '14, 07:33 JamesM |
One Answer:
How about using the "tcp.options" Field to get just the ByteArray of the TCP options? Like so:
answered 25 Mar ‘14, 11:09 Hadriel |
Thanks for the response :)
I did try this, but had “newbie” issues manipulating the ByteArray.
Will give it another go!