本文实例为大家分享了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
|
#include <stdlib.h> #include <stdio.h> #include <string.h> #include <unistd.h> #include <sys/socket.h> #include <sys/ioctl.h> #include <linux/if.h> #include <linux/mii.h> #include <linux/sockios.h> #include <errno.h> int get_if_miireg( const char *if_name, int phy_id, int reg_num ) { int fd = -1; struct ifreq ifr; struct mii_ioctl_data *mii; int value; if ((fd = socket(AF_INET, SOCK_DGRAM, 0)) < 0) { perror ( "socket" ); close(fd); return -1; } bzero(&ifr, sizeof (ifr)); strncpy (ifr.ifr_name, if_name, IFNAMSIZ-1); ifr.ifr_name[IFNAMSIZ-1] = 0; if (ioctl(fd, SIOCGMIIPHY, &ifr) < 0) { perror ( "ioctl" ); close(fd); return -1; } mii = ( struct mii_ioctl_data *)&ifr.ifr_data; mii->reg_num = reg_num; //0x01 if (ioctl(fd, SIOCGMIIREG, &ifr) < 0) { perror ( "ioctl" ); close(fd); return -1; } close(fd); value = ((mii->val_out&0x04)>>2); return value; } int main( int argc, char * argv[]) { int i=0; if (argc != 2) { fprintf (stderr, "usage: %s <ethname>" , argv[0]); return -1; } i = get_if_miireg(argv[1],0x10,0x01); printf ( "if_status = %d\n" , i ); return 0; } |
只能识别网线是否连接,还没识别网卡是否存在状态,也不识别网卡存在是否为down状态。
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。
原文链接:https://blog.csdn.net/handyhuang/article/details/17589403