Chinaunix首页 | 论坛 | 博客
  • 博客访问: 1067187
  • 博文数量: 264
  • 博客积分: 6005
  • 博客等级: 大校
  • 技术积分: 2798
  • 用 户 组: 普通用户
  • 注册时间: 2007-08-08 20:15
文章分类

全部博文(264)

文章存档

2011年(42)

2010年(213)

2009年(4)

2008年(2)

2007年(3)

分类:

2010-11-16 22:27:32

//
//Relevent network ioctl functions
//
//SIOCGIFADDR:       /* Get interface address */
//SIOCGIFBRDADDR:    /* Get the broadcast address */
//SIOCGIFNETMASK:    /* Get the netmask for the interface */
int get_local_ifr_ioctl(char *ifname, struct ifreq *ifr, int request)
{
    int fd;
    int rv;                     // return value
    strncpy(ifr->ifr_name, ifname, sizeof(ifr->ifr_name));
    fd = socket(AF_INET, SOCK_DGRAM, IPPROTO_IP);
    if (fd < 0)
        rv = fd;
    else
        rv = ioctl(fd, request, ifr);
    return rv;
}
int get_local_address_ioctl(char *ifname, struct in_addr *addr,
    int request)
{
    struct ifreq ifr = { {{0}} };
    struct sockaddr_in *tcpip_address;
    int rv;                     // return value
    rv = get_local_ifr_ioctl(ifname, &ifr, request);
    if (rv >= 0) {
        tcpip_address = (struct sockaddr_in *) &ifr.ifr_addr;
        memcpy(addr, &tcpip_address->sin_addr, sizeof(struct in_addr));
    }
    return rv;
}
int get_local_ip_address(char *ifname, struct in_addr *addr)
{
    return get_local_address_ioctl(ifname, addr, SIOCGIFADDR);
}
int get_local_ip_broadcast_address(char *ifname, struct in_addr *addr)
{
    return get_local_address_ioctl(ifname, addr, SIOCGIFBRDADDR);
}
int get_local_ip_address_mask(char *ifname, struct in_addr *mask)
{
    return get_local_address_ioctl(ifname, mask, SIOCGIFNETMASK);
}
阅读(2530) | 评论(0) | 转发(0) |
0

上一篇:linux 获取本机mac地址

下一篇:科学和技术

给主人留下些什么吧!~~