Viewing the packet in Wireshark I can confirm that it's all there - I'm getting 572 bytes and they're all correct and in the right place. When I run a UDP server on the nodMCU... I only see the protocol's ID field as plain text... 8 of the 572 bytes.
https://gyazo.com/6fb293c02d4a56d6ece9e7c3514a0b52 shows the wireshark packet... and here's my code:
s=net.createServer(net.UDP)
s:on("receive",function(s,c) print(c) end)
s:listen(5568)
What gets printed is simply "Art-Net" once per packet received. Do I need to do something differently to get or view the full binary data from the packet?