Re: [Wireshark-users] any examples of how to hook up Lua dissector to user_dlt tree?

2021-08-31 Thread Maynard, Christopher via Wireshark-users
> From: Wireshark-users On Behalf Of > Ariel Burbaickij > Sent: Monday, August 30, 2021 4:20 AM > To: Community support list for Wireshark > Subject: [Wireshark-users] any examples of how to hook up Lua dissector to > user_dlt tree? > > Hello community, > I would like to write Lua dissector

Re: [Wireshark-users] any examples of how to hook up Lua dissector to user_dlt tree?

2021-08-31 Thread Ariel Burbaickij
Hello Christopher, all, as I wrote "... to write Lua dissector...", so instructions what and how to do on command line do not apply in this case. Meanwhile, I figured out by myself how this is supposed to work: local udlt = DissectorTable.get("wtap_encap") udlt:add(wtap.USER1, ypp) why not to