Wireshark dissector for Pro DJ Link protocol
3
fork

Configure Feed

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

PDJL -> Pro DJ Link

Stella f7113a7b fd7d39d5

+3 -3
+3 -3
pro_dj_link.lua
··· 341 341 while off + 5 <= length do 342 342 if buf(off, 1):uint() == 0x11 and buf(off+1, 4):uint() == 0x872349ae then 343 343 if not found_db then 344 - pkt.cols.protocol = "PDJL (DB)" 344 + pkt.cols.protocol = "Pro DJ Link (DB)" 345 345 found_db = true 346 346 end 347 347 ··· 401 401 off = current 402 402 else 403 403 if off == 0 and length == 5 and buf(0, 1):uint() == 0x11 and buf(1, 4):uint() == 0x00000001 then 404 - pkt.cols.protocol = "PDJL (DB)" 404 + pkt.cols.protocol = "Pro DJ Link (DB)" 405 405 pkt.cols.info:set("DB: Greeting") 406 406 root:add(p_djl, buf(0, 5)):append_text(": Greeting (0x00000001)") 407 407 return ··· 419 419 end 420 420 421 421 -- UDP Logic 422 - pkt.cols.protocol = "PDJL" 422 + pkt.cols.protocol = "Pro DJ Link" 423 423 local tree = root:add(p_djl, buf(0, length)) 424 424 tree:add(f_header, header_buf) 425 425