- 论坛徽章:
- 0
|
再看看这个有没有的问题
char *get_eth0_bandwidth()
{
FILE *fd;
static char buf[256],*p;
int rx1,rx2,tx1,tx2,tx,rx;
memset(buf,0,sizeof(buf));
fd=fopen("/proc/net/dev","r");
if(fd<0)
{
printf("fopen error\n");
return NULL;
}
while( fgets(buf, sizeof(buf), fd) != NULL )
{
if(strstr(buf,"eth0"))
{
p=strtok(buf,":");
p=strtok(NULL,":");
p=strtok(p," ");
rx1=atol(p);
// printf("rx:%s \n",p);
p=strtok(NULL," ");
p=strtok(NULL," ");
p=strtok(NULL," ");
p=strtok(NULL," ");
p=strtok(NULL," ");
p=strtok(NULL," ");
p=strtok(NULL," ");
p=strtok(NULL," ");
tx1=atol(p);
//printf("tx:%s \n",p);
}
}
close(fd);
sleep(1);
memset(buf,0,sizeof(buf));
fd=fopen("/proc/net/dev","r");
if(fd<0)
{
printf("fopen error\n");
return NULL;
}
while( fgets(buf, sizeof(buf), fd) != NULL )
{
if(strstr(buf,"eth0"))
{
p=strtok(buf,":");
p=strtok(NULL,":");
p=strtok(p," ");
rx2=atol(p);
// printf("rx:%s \n",p);
p=strtok(NULL," ");
p=strtok(NULL," ");
p=strtok(NULL," ");
p=strtok(NULL," ");
p=strtok(NULL," ");
p=strtok(NULL," ");
p=strtok(NULL," ");
p=strtok(NULL," ");
tx2=atol(p);
//printf("tx:%s \n",p);
}
}
close(fd);
memset(buf,0,sizeof(buf));
if((tx2-tx1)>=0)
tx=tx2-tx1;
else
tx=tx2;
if((rx2-rx1)>=0)
rx=rx2-rx1;
else
rx=rx2;
sprintf(buf,"TX:%ldKbps/s \t RX:%ldKbps/s",tx*8/1024
,rx*8/1024);
return buf;
} |
|