diff options
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 |