diff options
author | Christian Pointner <equinox@anytun.org> | 2008-04-09 21:22:30 +0000 |
---|---|---|
committer | Christian Pointner <equinox@anytun.org> | 2008-04-09 21:22:30 +0000 |
commit | acbead59d307a10952cee41792e9397a2334f0da (patch) | |
tree | 400c76c6a2f2999f1b23270882709affaf7fd13c /wireshark-lua | |
parent | removed old documentation (diff) |
cipher added mux to senderid for crypto
fixed payload type with ipv6
fixed lua script
options: device defaults to tun
Diffstat (limited to 'wireshark-lua')
-rw-r--r-- | wireshark-lua/satp.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/wireshark-lua/satp.lua b/wireshark-lua/satp.lua index 1d6985e..be88557 100644 --- a/wireshark-lua/satp.lua +++ b/wireshark-lua/satp.lua @@ -7,13 +7,13 @@ do local payload_types = { [0x0800] = "IPv4", [0x6558] = "Ethernet", - [0x56DD] = "IPv6" + [0x86DD] = "IPv6" } local payload_dissector = { [0x0800] = "ip", [0x6558] = "ethernet", - [0x56DD] = "ipv6" + [0x86DD] = "ipv6" } local field_seq = ProtoField.uint32("satp.seq","Sequence Number",base.DEC) |