diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-08-31 14:00:02 +0200 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-08-31 14:00:02 +0200 |
commit | 2a643308faf4262b938f9c32ab49fd56a95f04a0 (patch) | |
tree | 7f62cea2492948cb461d677baf45e09c145ec662 /wireshark/util.lua | |
parent | 882d9bc46d6da8a4134a66010f21b85d733353d4 (diff) |
more reassembled data dissection + notes
Diffstat (limited to 'wireshark/util.lua')
-rw-r--r-- | wireshark/util.lua | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/wireshark/util.lua b/wireshark/util.lua index 7c9a16d..1022b6b 100644 --- a/wireshark/util.lua +++ b/wireshark/util.lua @@ -24,7 +24,6 @@ end room_user_addrs = { } DS_SYSTEM_ADDRS = { ["\x00\x00\x00\x00\x00\x00"] = "Null / empty", - ["\x00\x09\xbf\x11\x22\x33"] = "Default firmware MAC", ["\x03\x09\xbf\x00\x00\x00"] = "Multiplayer CMD", ["\x03\x09\xbf\x00\x00\x10"] = "Multiplayer Reply", ["\x03\x09\xbf\x00\x00\x03"] = "Multiplayer ACK", @@ -40,7 +39,7 @@ function get_addr_label(addr) label = room_user_addrs[addr] if label ~= nil then - return string.format("User: %s", label) + return string.format("user %s", label) end return nil |