免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
12
最近访问板块 发新帖
楼主: del77
打印 上一主题 下一主题

怎样编程获得linux的可用磁盘空间和网卡的流量呢?? [复制链接]

论坛徽章:
0
11 [报告]
发表于 2005-11-04 17:40 |只看该作者
原帖由 mq110 于 2005-11-3 21:58 发表



程序有问题.  char buf[256] 随便就这么返回栈上空间了??



多谢!!

论坛徽章:
0
12 [报告]
发表于 2005-11-04 17:43 |只看该作者
再看看这个有没有的问题
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;

}
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP