Wireshark dissector for Pro DJ Link protocol
3
fork

Configure Feed

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

showing search strings in info column

Stella 4c9a8b30 cad06167

+7
+7
pro_dj_link.lua
··· 765 765 local prev_current = current 766 766 local bytes_read, val = dissect_db_field(buf, current, msg_tree, m_type, i) 767 767 768 + -- If it's a Search request, record the search query for the summary 769 + if m_type == 0x1300 and i == 4 and val then 770 + -- val is a string from dissect_db_field 771 + msg_tree:append_text(" - \"" .. val .. "\"") 772 + db_types[#db_types] = db_types[#db_types] .. " \"" .. val .. "\"" 773 + end 774 + 768 775 -- If it's a Success/Ack, show what it's acking in the summary 769 776 if m_type == 0x4000 then 770 777 if i == 1 and val then