使用gethostbyname()提取IP数据

时间:2015-09-23 10:26:08

标签: c++ networking dns

现在例如,如果我想找到某个主机的IP。我会使用gethostbyname()命令并将数据放入struct hostent中。现在我想获取信息h_addr_list。所以我做的是我开始打印地址,直到我得到一个空字符。现在我遇到的问题是地址是* char格式,我想将它们更改为IPv4格式。我已尝试过某些方法,但我一直遇到问题。

struct hostent 
{
    char *h_name;       /* Official domain name of host */
    char **h_aliases;   /* Null-terminated array of domain names */
    int h_addrtype;     /* Host address type (AF_INET) */
    int h_length;       /* Length of an address, in bytes */
    char **h_addr_list;     /* Null-terminated array of in_addr structs */
};

2 个答案:

答案 0 :(得分:2)

以下是代码示例。输出地址的格式为digits.digits.digits.digits(它包含点缀)

#include <stdio.h>
#include <netdb.h>
#include <string.h>
#include <arpa/inet.h>
struct hostent *he;
struct in_addr a;

int main ()
{
  he = gethostbyname ("localhost");
  if (he)
  {
    printf("name: %s\n", he->h_name);
    while (*he->h_aliases)
        printf("alias: %s\n", *he->h_aliases++);
    while (*he->h_addr_list)
    {
        bcopy(*he->h_addr_list++, (char *) &a, sizeof(a));
        printf("address: %s\n", inet_ntoa(a));
    }
 }
 else
    printf("error");
 return 0;
}

输出:

name: localhost
address: 127.0.0.1

答案 1 :(得分:0)

想要做这样的事情:

其中Address是char *

struct in_addr IpAddress;
if(inet_aton(Address,&IpAddress))
{
    return(ntohl((int)IpAddress.s_addr));
}