su = net.createServer(net.UDP)
su:on("receive", function(su,payload)
print("got data")
end)
su:listen(5353)
I'm new to using UDP packets. I have code that can send out a UDP packet (confirmed with Wireshark), however I haven't been able to receive the answers back from my UDP packet. I see the answers in Wireshark, but this code never prints anything out.
Given the number of other people having problems, is there some flakiness in either the ESP SDK or in the LUA implementation?