Wireshark dissector for Pro DJ Link protocol
3
fork

Configure Feed

Select the types of activity you want to include in your feed.

decimal tx id in info column

Stella 03bc726b 29fda766

+1 -1
+1 -1
pro_dj_link.lua
··· 693 693 if msg_len - (current - off) >= 5 then 694 694 local bytes_read, val = dissect_db_field(buf, current, msg_tree, nil, "Transaction ID") 695 695 tx_id = val or 0 696 - local tx_str = (tx_id == 0xfffffffe) and "Setup/Teardown" or string.format("0x%08x", tx_id) 696 + local tx_str = (tx_id == 0xfffffffe) and "Setup/Teardown" or tostring(tx_id) 697 697 698 698 local already_added = false 699 699 for _, v in ipairs(tx_ids) do