套接字缓冲区绑定到套接字
在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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
skb->sk
在接收时由skb_set_owner_r()
设置,例如在net/ipv4/tcp_input.c
中。一般来说,网络核心会将基于以太类型的数据包分派到适当的协议处理程序,并在那里查找套接字并将数据包放入套接字积压中进行处理。skb->sk
is set on receive byskb_set_owner_r()
, for example innet/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.