Consider the following code:
client.Send(data, data.Length, endpoint);
byte[] response = client.Receive(ref endpoint);
So far, according to WireShark (network sniffer), the remote host is responding with data, the application here is just waiting for data forever ... for some reason, it does not receive a response from the remote host.
Any ideas?
source
share