Skip to content
Snippets Groups Projects
Commit b1b9c67c authored by Brutzman, Don's avatar Brutzman, Don
Browse files

improved diagnostics, comments

parent 18fc6357
No related branches found
No related tags found
No related merge requests found
......@@ -49,7 +49,7 @@ public class UdpSender
// that you haven't received a duplicate UDP packet, out of
// order packet, or dropped packet?
for(int idx = 0; idx < 100; idx++)
for(int idx = 0; idx < 100; idx++) // avoid infinite send loops in code, can be hard to kill!
{
udpSocket.send(packet);
Thread.sleep(1000); // Send 100, one per second
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment