从Windows中的接口名称获取IP地址

时间:2012-08-05 14:36:08

标签: c++ winapi networking porting windows-networking

我想知道,我可以使用界面名称获取ipaddress的winapi。 Linux版本如下。

#include <stdio.h>
#include <string.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/ioctl.h>
#include <netinet/in.h>
#include <net/if.h>
#include <unistd.h>
#include <arpa/inet.h>
int main()
{
    int fd;
    struct ifreq ifr;
    char iface[] = "eth0";
    fd = socket(AF_INET, SOCK_DGRAM, 0);
    //Type of address to retrieve - IPv4 IP address
    ifr.ifr_addr.sa_family = AF_INET;
    //Copy the interface name in the ifreq structure
    strncpy(ifr.ifr_name , iface , IFNAMSIZ-1);
    ioctl(fd, SIOCGIFADDR, &ifr);
    close(fd);
    //display result
    printf("%s - %s\n" , iface , inet_ntoa(( (struct sockaddr_in *)&ifr.ifr_addr )->sin_addr) );
    return 0;
}

我正在寻找类似的功能(如上面的代码),但适用于C ++中的Windows

4 个答案:

答案 0 :(得分:1)

请参阅GetAdaptersAddresses函数示例。 FriendlyName和FirstUnicastAddress是您需要的字段。

http://msdn.microsoft.com/en-us/library/windows/desktop/aa365915%28v=vs.85%29.aspx

另请参阅:Get network interface name from IPv4 address

答案 1 :(得分:0)

SIGAR是一个用于获取系统信息(CPU,RAM,DISK和网络)的跨平台库。它允许您列出Mac / Windows / Linux上的所有网络接口,并获取您可能需要的任何其他信息。

http://support.hyperic.com/display/SIGAR/Home

如果您不想使用整个库,我相信您可以检查代码以找到您需要的部分。

答案 2 :(得分:0)

可能是你可以根据自己的需要进行调整......

http://kodeyard.blogspot.in/2009/09/get-ip-address-in-cwindows.html

答案 3 :(得分:0)

您必须首先初始化WinSock,然后才使用gethostname,gethostbyname和inet_ntoa函数。以下link会对您有所帮助。