linux打开网卡函数,Linux下获得本机IP及网卡状态的函数

欢迎进入Linux社区论坛,与200万技术人员互动交流 >>进入 我的需求只是要判断某种网络是否可用,系统中有局域网eth0和3G拨号链接ppp0,有不同的Socket要创建在各自的网络上,写如下函数,传用网络名就可以判断网络是否可用。 // 检测网络连接 // routeName:

欢迎进入Linux社区论坛,与200万技术人员互动交流 >>进入

我的需求只是要判断某种网络是否可用,系统中有局域网eth0和3G拨号链接ppp0,有不同的Socket要创建在各自的网络上,写如下函数,传用网络名就可以判断网络是否可用。

// 检测网络连接

// routeName: 网络连接名称,如ppp0、eth0等

// 返回值: 网络正常返回0,异常返回-1

int CheckNetLink(const char *routeName)

{

register int fd, intrface;

struct ifreq buf[16];

struct ifconf ifc;

if ((fd = socket (AF_INET, SOCK_DGRAM, 0)) >= 0)

{

ifc.ifc_len = sizeof(buf);

ifc.ifc_buf = (caddr_t) buf;

if (!ioctl(fd, SIOCGIFCONF, (char *) &ifc))

{

intrface = ifc.ifc_len / sizeof (struct ifreq);

while (intrface-- > 0)

{

if (strcmp(buf[intrface].ifr_name, routeName) == 0)

{

ioctl(fd, SIOCGIFFLAGS, (char *) &buf[intrface]);

if ((buf[intrface].ifr_flags & IFF_UP) && (buf[intrface].ifr_flags & IFF_RUNNING))

{

//printf("\n%s is UP & RUNNING\n", routeName);

return OK;

}

else

{

//printf("\n%s is DOWN\n", routeName);

return ERROR;

}

}

}

//printf("\n%s is not exist\n", routeName);

return ERROR;

}

}

return ERROR;

}

test.jsp?url=http%3A%2F%2Fwww.chinaitlab.com%2Fcms%2Fimages%2Flogo14.gif&refer=http%3A%2F%2FLinux.chinaitlab.com%2Fadminister%2F825616.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值