0

I am connected using UDP network connection, When I receive data from broadcast listener missing some data. Is this the problem with wireless network, anyone experience similar or other network problem with own apps?

Sujay
  • 601
  • 1
  • 10
  • 19

1 Answers1

2

UDP connections don't offer sufficient error checking, especially over WiFi. Is there anyway you could use a TCP connection to suffice due to the fact that TCP will do error checking and request missing data?

Chad
  • 90
  • 7