Skip to content

Latest commit

 

History

History
22 lines (20 loc) · 865 Bytes

File metadata and controls

22 lines (20 loc) · 865 Bytes

Ragnarok Online Packet Dissector

LUA plugin for Wireshark

How to install the plugin

Updating Packet Table

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>
}