我尝试为类项目编写TFTP客户端。 使用UdpClient类我可以成功地从服务器请求数据,但返回的数据包永远不会到达我的代码。
我的防火墙已关闭。 我可以在wireshark中观察返回的数据包,但UdpClient.Receive会无限期地阻塞。
mUdpClient在构造函数中初始化为mUdpClient = new UdpClient();
mUdpClient像这样连接
public void connect(String host, int port) {
mServerAddress = System.Net.Dns.GetHostAddresses(host)[0];
var endPoint = new IPEndPoint(mServerAddress, port);
mUdpClient.Connect(endPoint);
}
在连接之后,我发送了我的请求,这是成功的(在wireshark中观察到)
这是我的接收代码的样子
private void receiveResponse() {
var newEndpoint = new IPEndPoint(IPAddress.Any, 0);
byte[] response = mUdpClient.Receive(ref newEndpoint);
Console.Out.WriteLine(response);
}
这已经在我的Surface Pro和在Debian下运行的Windows 8.1 VirtualBox VM上进行了测试。
答案 0 :(得分:1)
请注意,由于您在UDP套接字上使用Connect()方法,因此您只能看到实际从该IPEndPoint发送的数据报。如果您的远程主机由于某种原因使用不同的IPEndPoint将数据发送给您,您将看不到它。所以也许尝试不使用默认主机功能(即不要调用Connect ...只需在每次Send()调用时提供远程IPEndPoint)。