转自:https://blog.csdn.net/dosthing/article/details/80384541
前言
网络编程是程序连接网络拓展的基础,尤其是在物联网、互联网加等概念火热的当下,网络编程能力体现了一个程序员能否具有大型程序的开发能力。在实际应用中,往往需要显示目前系统的实时网速等信息,当然获取网速等信息的软件方法很多,但是用小几行代码,并可移植性好的方法却不多,这里介绍如何通过Linux的proc文件系统进行实时获取网卡收发速率。
原理简介
Linux提供的LKM机制可以使我们通过proc伪文件系统来获取Linux内核信息,而通过proc/net/dev我们可以实时获取网络适配器及统计信息。抛开复杂的概念,简单说就是我们可以利用proc/net/dev来获取网卡的网速及网络包的收发情况。这里我们主要关心Receive和Transmit项的bytes项。bytes定义:The total number of bytes of datatransmitted or received by the interface. 即网口的发送或接收的数据的总字节数。更多选项的定义,我们用不着,如有兴趣了解戳这里。
实例详解
有了以上的背景知识,足够我们理解实例的内容了,直接上源码,看看如何实现实时统计网卡的网速信息。
#include <sys/types.h> #include <sys/stat.h> #include <sys/ioctl.h> #include <sys/socket.h> #include <sys/wait.h> #include <sys/time.h> #include <arpa/inet.h> #include <unistd.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include <pthread.h> #include <dirent.h> #include <time.h> #include <fcntl.h> #include <errno.h> #ifdef debugprintf #define debugpri(mesg, args...) fprintf(stderr, "[NetRate print:%s:%d:] " mesg " ", __FILE__, __LINE__, ##args) #else #define debugpri(mesg, args...) #endif int GetNetRate(FILE* fd,char *interface,long *recv,long *send) { char buf[1024]; char *p; char flow[32]; int i = 0; char tempstr[16][16]={0}; memset(buf,0,sizeof(buf)); memset(tempstr,0,sizeof(tempstr)); fseek(fd, 0, SEEK_SET); int nBytes = fread(buf,1, sizeof(buf)-1,fd); if (-1 == nBytes) { debugpri("fread error"); fclose(fd); return -1; } buf[nBytes] = '