You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It's currently not possible to receive answers to an UDP broadcast because udpClient:_receive checks the incoming datagrams against the connected IP address, which is a broadcast address. It dismisses all messages.
The current design apparently expects the clients to know who their getting messages from as the recv callback does not pass on the IP address an port. This would be another problem with UDP broadcasts.
The text was updated successfully, but these errors were encountered:
It's currently not possible to receive answers to an UDP broadcast because
udpClient:_receive
checks the incoming datagrams against the connected IP address, which is a broadcast address. It dismisses all messages.The current design apparently expects the clients to know who their getting messages from as the recv callback does not pass on the IP address an port. This would be another problem with UDP broadcasts.
The text was updated successfully, but these errors were encountered: