diff options
author | Christian Pointner <equinox@anytun.org> | 2008-04-10 16:08:18 +0000 |
---|---|---|
committer | Christian Pointner <equinox@anytun.org> | 2008-04-10 16:08:18 +0000 |
commit | 1daa77c167b97bf7b6047bd3deb1f4c68e3416e2 (patch) | |
tree | 12a772c7a82aa95ac4676d7b5b6176cb87c67b4b /wireshark-lua | |
parent | cipher added mux to senderid for crypto (diff) |
fixed wireshark lua script with ethernet tunneling
pointer check @ plain packet
Diffstat (limited to 'wireshark-lua')
-rw-r--r-- | wireshark-lua/satp.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wireshark-lua/satp.lua b/wireshark-lua/satp.lua index be88557..140f971 100644 --- a/wireshark-lua/satp.lua +++ b/wireshark-lua/satp.lua @@ -12,7 +12,7 @@ do local payload_dissector = { [0x0800] = "ip", - [0x6558] = "ethernet", + [0x6558] = "eth", [0x86DD] = "ipv6" } |