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.
给定一个任意的 unix 套接字地址,我是否能够通过 POSIX api 调用获取其上的连接数?
还是我必须通过 /proc 文件系统?
我假设您的意思是端口上的当前连接数,而不是我首先想到的套接字 fd 生命周期内的总连接数。恐怕最便携的方法是 popen("netstat -n", "r") 并尝试解析它。POSIX 在系统/网络管理工具方面为我们提供的很少。