C ++获取服务网络状态linux

时间:2011-01-24 11:00:53

标签: c++ linux networking service

如何从我的Linux机器中获取C ++中的网络服务状态(如终端中的服务网络状态)?

1 个答案:

答案 0 :(得分:0)

您可能希望使用exec or execv之类的通话。如果你包含“unistd.h”,它们就可用。有关它们如何工作的更多信息,请查看exec的手册页man execlook here

系统也可以使用。喜欢 -

#include <stdlib.h>
int main() {
system("ls -l");
printf("This is a directory list...");
}

you can use iftop command to find network stats in linux.