iOS devices not receiving UDP multicast using GDAsyncUdpSocket
问题 The code below is intended to receive UDP multicast messages on 239.255.255.250 and simply NSLog the contents of the message. If I address a message to the IP of the iOS device (i.e. from a terminal echo foo | nc -u 10.1.10.249 1900 ) the message is received and NSLog'd. However, if I broadcast a message to the multicast address ( echo bar | nc -u 239.255.255.250 1900 ), the message is not received. No error messages are logged at start up. Thoughts on where I'm going awry? #import