本文实例为大家分享了C语言实现linux网卡检测的精简代码,供大家参考,具体内容如下
万能的网络,通过getifaddrs可以大大减少编码量,获得 C语言实现linux网卡检测-改进版 同样的效果。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <sys/socket.h>
#include <sys/ioctl.h>
#include <linux/if.h>
#include <ifaddrs.h>
#include <arpa/inet.h>
int c_ifaddrs_netlink_status( const char *if_name )
{
struct ifaddrs *ifa = NULL, *ifList;
if (getifaddrs(&ifList) < 0)
{
return -1;
}
for (ifa = ifList; ifa != NULL; ifa = ifa->ifa_next)
{
if (ifa->ifa_addr->sa_family == AF_INET)
{
if ( strcmp (ifa->ifa_name, if_name) ==0)
{
if (!(ifa->ifa_flags & IFF_UP))
{
printf ( "DEVICE_DOWN\r\n" );
freeifaddrs(ifList);
return 1;
}
if (!(ifa->ifa_flags & IFF_RUNNING))
{
printf ( "DEVICE_UNPLUGGED\r\n" );
freeifaddrs(ifList);
return 2;
}
printf ( "DEVICE_LINKED\r\n" );
freeifaddrs(ifList);
return 3;
}
}
}
printf (stderr, "DEVICE_NONE\r\n" );
freeifaddrs(ifList);
return 0;
}
int main( int argc, char * argv[])
{
int i=0;
if (argc != 2)
{
fprintf (stderr, "usage: %s <ethname>\r\n" , argv[0]);
return -1;
}
i = c_ifaddrs_netlink_status(argv[1]);
fprintf (stderr, "c_ifaddrs_netlink_status if_status = %d\n" , i );
return 0;
}
|
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。
原文链接:https://blog.csdn.net/handyhuang/article/details/17614599