I am writing an XLES protocol dissector, but this protocol is in the payload of LAPV5, so I have to write the LAPV5 dissector first. How do I connect the two protocols? I wrote something like this:
But it doesn’t work. XLES only exists when LAPV5 has a payload. Does the asked 03 May ‘12, 19:40 ww2521 edited 10 May ‘12, 03:36 helloworld |
One Answer:
In your case, you would daisy-chain the dissectors. That is, call your XLES dissector directly from your LAPV5 dissector. Try this Lua:
answered 10 May ‘12, 03:41 helloworld |
hi, that works. Thanks for your help.