Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在我的简单 Udp 服务器中使用 UdpClient。 是否可以仅从特定的 IP 地址开始接收()?
谢谢
不,这是 UDP 的基本原理,它不像 TCP 那样面向连接的协议。您只能在收到数据包时通过检查调用 EndReceive() 时获得的 IPEndPoint 来拒绝数据包。您实际上必须这样做的可能性应该很小。