I have packet with trailer data after the packet as in ixia timestamp trailer. I am trying to write a dissector for Wireshark that is quite the same as ixia-packet_trailer plugin. https://raw.githubusercontent.com/boundary/wireshark/master/epan/dissectors/packet-ixiatrailer.c
But i wanted to write in Lua, so it is easiest to change. So i replace the C line
heur_dissector_add("eth.trailer", dissect_ixiatrailer, proto_ixiatrailer);
by the following in the Lua
eth_table = DissectorTable.get("eth.trailer")
But i got error from Wireshark "bad argument to get (DissectorTable_get no such dissector table)"
Dissector.getinstead ofDissectorTable.get- Piglet