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.
我想知道哪个进程正在打开一个端口,我该如何在c代码中做到这一点?谢谢!
我建议您查看“netstat”命令的源代码。 netstat --inet -p将为您提供所需的信息,因此代码将具有阅读该信息所需的一切。
netstat --inet -p
http://freecode.com/projects/net-tools
如果您不介意从命令行执行此操作,只需使用
网络统计-anp | grep [你想要的端口]