I am trying to get some UDP communication up and running in C# between my application and a remote host.
My application sends a message to the remote host over port 69. The remote host then sends a response from an arbitrary port to the port from which I sent the first message. I am not able to receive this message because it appears that the .NET socket is only listening on the original port. I can receive messages just fine when they are sent from the same port that I send the first message to.
Any ideas?
My application sends a message to the remote host over port 69. The remote host then sends a response from an arbitrary port to the port from which I sent the first message. I am not able to receive this message because it appears that the .NET socket is only listening on the original port. I can receive messages just fine when they are sent from the same port that I send the first message to.
Any ideas?