linux下如何检测网线是否插拔(一)

linux下检测网线插拔一般使用方法有一种,ioctrl.
但是在嵌入式linux中,有时候不管用.
linux标准做法.
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
int get_netlink_status(const char *if_name);
int main()
{
printf("*******\n");
    if(getuid() != 0)
    {
        fprintf(stderr, "Netlink Status Check Need Root Power.\n");
        return 1;
    }
    
    printf("Net link status: %d\n", get_netlink_status("eth0"));


    return 0;
}
// if_name like "ath0", "eth0". Notice: call this function
// need root privilege.
// return value:
// -1 -- error , details can check errno
// 1 -- interface link up
// 0 -- interface link down.
int get_netlink_status(const char *if_name)
{
    int skfd,ret;
    struct ifreq ifr;
    struct ethtool_value edata;
    edata.cmd = ETHTOOL_GLINK;
    edata.data = 0;
    memset(&ifr, 0, sizeof(ifr));
    strncpy(ifr.ifr_name, if_name, sizeof(ifr.ifr_name) - 1);
    ifr.ifr_data = (char *) &edata;
    if (( skfd = socket( AF_INET, SOCK_DGRAM, 0 )) < 0)
    {
     printf("eroor socket****\n");
        return -1;
    }
    if(ioctl( skfd, SIOCETHTOOL, &ifr ) < 0)
    {
     ret = printf("eroor ioctl****\n");
        close(skfd);
        return ret;
    }
    close(skfd);
    return edata.data;
}

你可能感兴趣的:(linux系统,linux驱动,网络)