Does using Broadcast like this:
IPEndPoint remoteEP = new IPEndPoint( IPAddress.Broadcast, remotePort );
do this? i.e. is it theoretically able to send the packet to every computer on the internet, since my understanding of Broadcast is that it is routed to all computers to which the receiver is connected to.
IPEndPoint remoteEP = new IPEndPoint( IPAddress.Broadcast, remotePort );
do this? i.e. is it theoretically able to send the packet to every computer on the internet, since my understanding of Broadcast is that it is routed to all computers to which the receiver is connected to.