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.
有没有办法(在 .NET 框架中)在不使用 Socket.Bind 调用的情况下在 UDP 数据包上设置源端口?这个特定的套接字只发送数据。我正在使用接收远程地址和端口的 SendTo 方法。我不想绑定任何东西。但是,我的客户端软件使用 UDP 数据包的源端口作为返回路径。
设置源地址和端口是绑定调用的全部目的。为什么要避免调用它?您认为绑定套接字会做什么您不想做的事情?
不,不存在设置源地址和端口的第二种/替代方法。绑定套接字是唯一的方法。
内容