使用gethostbyname()来查找IP

时间:2015-05-06 06:15:42

标签: c dhcp unix-socket gethostbyname

在c中使用gethostbyname()来检索主机的真实IP地址的正确方法是什么。另外为什么人们会说DHCP会把这种方法置于危险之中?

1 个答案:

答案 0 :(得分:0)

gethostbyname()函数通过使用DNS查找名称来返回有关主机的信息。

函数的返回数据类型和参数如下所示:

struct hostent* gethostbyname(const char *name);

从主机名(在本例中为“mail.google.com”)中提取IP地址列表的示例如下所示:

char host_name = "mail.google.com";
struct hostent *host_info = gethostbyname(host_name);

if (host_info == NULL) 
{
    return(-1);
}

if (host_info->h_addrtype == AF_INET)
{
    struct in_addr **address_list = (struct in_addr **)host_info->h_addr_list;
    for(int i = 0; address_list[i] != NULL; i++)
    {
        // use *(address_list[i]) as needed...
    }
}
else if (host_info->h_addrtype == AF_INET6)
{
    struct in6_addr **address_list = (struct in6_addr **)host_info->h_addr_list;
    for(int i = 0; address_list[i] != NULL; i++)
    {
        // use *(address_list[i]) as needed...
    }
}