套接字缓冲区绑定到套接字

发布于 2024-11-10 07:18:46 字数 69 浏览 2 评论 0原文

在linux内核中,当数据包[sk_buff]接收时,数据包何时绑定到其套接字?即 sk_buff 的 sk 字段何时填充?

In the linux kernel, upon packet [sk_buff] receive, when is the packet bound to its socket ? i.e. when is the sk_buff's sk field populated ?

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

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

发布评论

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

评论(1

追风人 2024-11-17 07:18:46

skb->sk 在接收时由 skb_set_owner_r() 设置,例如在 net/ipv4/tcp_input.c 中。一般来说,网络核心会将基于以太类型的数据包分派到适当的协议处理程序,并在那里查找套接字并将数据包放入套接字积压中进行处理。

skb->sk is set on receive by skb_set_owner_r(), for example in net/ipv4/tcp_input.c. In general the networking core will dispatch packets based on ethertype to the appropriate protocol handler, and it is there that the socket is looked up and the packet put into the socket backlog for processing.

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