来自udp广播的网络接口信息

时间:2014-04-20 11:13:12

标签: c# .net networking

我的代码看起来像

IPEndPoint ipendpoint = new IPEndPoint(IPAddress.Any, 0);
UdpClient client = new UdpClient(25001, AddressFamily.InterNetwork);
byte[] recv = client.Receive(ref ipendpoint);

我用pc1和pc2发送广播时此代码在同一网络中,因此收到pc1发送的消息。 pc2监听每个网络接口(因为IPAdress.Any)这是一件好事,因为pc2可以有多个网络接口。现在我想知道这个消息实际上是在哪个网络接口/ IP中。是否有可能检索到这些信息?

我已经尝试过调试但是没有一个对象似乎有我需要的信息。

1 个答案:

答案 0 :(得分:0)

客户端发送数据后,您可以查看:

 ipendpoint.Address
 ipendpoint.Port

获取ip和端口。