- Copy the contents of ./plugin (
ro_dissector.lua
,ro_tap.lua
andro_packet_table.lua
) and ./table/table_serialize.lua to your Wireshark main directory - Append
dofile('/ro_dissector.lua')
to the end ofinit.lua
After the plugin has ran a new filero_extracted.pcap
will be generated with only the packets of our protocol
lua update_packet.lua <in file>
- The in file structure should follow:
// packet <HEX header 0x%04x>
struct PACKET_<packet name with no spaces> {
/* this+0x0 */ short PacketType
/* this+0x2 */ short PacketLength
...
/* this+<0x%04 pos> */ <C type> <variable name>
}