diff options
author | meme <meme@users.noreply.github.com> | 2018-12-10 08:47:35 -0500 |
---|---|---|
committer | Loïc Blot <nerzhul@users.noreply.github.com> | 2018-12-10 14:47:35 +0100 |
commit | f7cccd4df3163464a4fc3bcca4636c93126bbe7f (patch) | |
tree | 91ad308c3040c2bedb8eb6d9700d07d46e4463bd | |
parent | 5560ec8178053b27adac6f277f539975d46267b8 (diff) | |
download | minetest-f7cccd4df3163464a4fc3bcca4636c93126bbe7f.tar.gz minetest-f7cccd4df3163464a4fc3bcca4636c93126bbe7f.tar.bz2 minetest-f7cccd4df3163464a4fc3bcca4636c93126bbe7f.zip |
Fix dissector script to work with newer versions of Wireshark (#7957)
-rw-r--r-- | util/wireshark/minetest.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/util/wireshark/minetest.lua b/util/wireshark/minetest.lua index a8c22428f..1346adbc3 100644 --- a/util/wireshark/minetest.lua +++ b/util/wireshark/minetest.lua @@ -118,7 +118,7 @@ end do local f_count = ProtoField.uint8("minetest.client.gotblocks_count", "Count", base.DEC) - local f_block = ProtoField.bytes("minetest.client.gotblocks_block", "Block", base.DEC) + local f_block = ProtoField.bytes("minetest.client.gotblocks_block", "Block", base.NONE) local f_x = ProtoField.int16("minetest.client.gotblocks_x", "Block position X", base.DEC) local f_y = ProtoField.int16("minetest.client.gotblocks_y", "Block position Y", base.DEC) local f_z = ProtoField.int16("minetest.client.gotblocks_z", "Block position Z", base.DEC) @@ -152,7 +152,7 @@ end do local f_count = ProtoField.uint8("minetest.client.deletedblocks_count", "Count", base.DEC) - local f_block = ProtoField.bytes("minetest.client.deletedblocks_block", "Block", base.DEC) + local f_block = ProtoField.bytes("minetest.client.deletedblocks_block", "Block", base.NONE) local f_x = ProtoField.int16("minetest.client.deletedblocks_x", "Block position X", base.DEC) local f_y = ProtoField.int16("minetest.client.deletedblocks_y", "Block position Y", base.DEC) local f_z = ProtoField.int16("minetest.client.deletedblocks_z", "Block position Z", base.DEC) @@ -548,7 +548,7 @@ minetest_server_obsolete[0x23] = true do local f_count = ProtoField.uint16("minetest.server.playerinfo_count", "Count", base.DEC) - local f_player = ProtoField.bytes("minetest.server.playerinfo_player", "Player", base.DEC) + local f_player = ProtoField.bytes("minetest.server.playerinfo_player", "Player", base.NONE) local f_peer_id = ProtoField.uint16("minetest.server.playerinfo_peer_id", "Peer ID", base.DEC) local f_name = ProtoField.string("minetest.server.playerinfo_name", "Name") |