我如何将每个 /proc/net/tcp 条目与每个打开的套接字匹配?
我正在尝试从 /proc/net/tcp
解析套接字信息,虽然我可以识别一些字段,例如内存地址或发送队列使用,但我无法找到每个条目如何绑定到它的套接字描述符。例如,使用以下数据:
1: 5922140A:E459 D5C43B45:0050 01 00000000:00000000 00:00000000 00000000 1000 0 507218 1 f6ab1300 57 3 12 4 -1
我想知道哪个是对应的套接字描述符。
I'm trying to parse socket info from /proc/net/tcp
and while I can identify some fields, such as memory addresses or send queue use, I can't find how each entry is bound to its socket descriptor. e.g., with this data:
1: 5922140A:E459 D5C43B45:0050 01 00000000:00000000 00:00000000 00000000 1000 0 507218 1 f6ab1300 57 3 12 4 -1
I want to know which is the correspondant socket descriptor.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
获取索引节点号(在本例中为 507218)。该套接字的每个打开文件描述符(同一个套接字可能有多个文件描述符)将显示为以下形式的链接:(
其中
是进程 ID,< ;N>
是文件描述符)。Take the inode number (in this case, 507218). Each open file descriptor to that socket (there may be multiple file descriptors for the same socket) will appear as a link of the form:
(where
<PID>
is the process ID and<N>
is the file descriptor).