sockets-for-pcl icon indicating copy to clipboard operation
sockets-for-pcl copied to clipboard

UDP unicast callback "MessageReceived" does not get invoked

Open abhishekstl opened this issue 7 years ago • 2 comments

// Socket Setup m_exclusive_conn = new UdpSocketReceiver(); m_exclusive_conn.MessageReceived += OnReceiveData; m_exclusive_conn.StartListeningAsync(m_port).Wait();

Program is able to receive Broadcast UDP messages, however unicast UDP messages appear to be excluded

What is required to support UDP broadcast and unicast messages on a socket ?

abhishekstl avatar May 08 '17 21:05 abhishekstl

That setup should be fine for receiving unicast also. What are the characteristics of sender/receiver - platforms, physical/simulator, connection type?

rdavisau avatar May 14 '17 01:05 rdavisau

HI Ryan,

The sender is a xamarin uwp application and receiver is a commercial controller, these devices are connected in the same wifi.

abhishekstl avatar Jun 01 '17 03:06 abhishekstl