(UDP) 在 Windows 套接字上尝试发送数据之前,ARP 是否会发生?

发布于 2024-10-07 18:57:46 字数 59 浏览 3 评论 0原文

IE,它在创建 UDP 套接字期间起作用吗? 我很确定答案是“不”,但谁知道呢。

谢谢。

IE, does it play any role during the creation of a UDP socket?
I'm pretty sure the answer is "no", but who knows.

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

感情废物 2024-10-14 18:57:46

ARP(如果需要)将由 send()sendto() 调用触发。

大多数情况下,不需要发送 ARP,因为目的地很可能可以通过已缓存 ARP 条目的默认网关到达。

另外,您可能对 SendARP 感兴趣 函数。如果您想在等待初始 ARP 响应时获得一点额外的保护,防止丢包,您可以在开始发送 UDP 数据包之前显式调用它。否则,当堆栈等待 ARP 解析时,传输队列可能会溢出。

The ARP (if necessary) would be triggered by the send() or sendto() call.

Most of the time an ARP doesn't need to be sent since the destination is most likely reachable through the default gateway for which the ARP entry will already be cached.

Also, you may be interested in the SendARP function. You can explicitly call it before you start sending UDP packets if you want a little extra insurance against drops while waiting for the initial ARP response. Otherwise, it might be possible to overfill the transmit queue while the stack waits around for ARP resolution.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文