gethostbyaddr错误未知主机

时间:2012-09-08 17:25:15

标签: c++ c sockets networking gethostbyaddr

#include <stdio.h>
#include <netdb.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>

int main () {
    in_addr ip;
    ip.s_addr = inet_addr("173.194.71.94"); // www.google.fr IP
    hostent* hostnames = gethostbyaddr(&ip, sizeof(ip), AF_INET);
    if (hostnames != NULL && hostnames[0].h_name != NULL) {
        printf("%s\n", hostnames[0].h_name);
        return 0;
    } else {
        herror("gethostbyaddr");
        return 1;
    }
}

返回“gethostbyaddr:未知主机”。我试过不同的IP。怎么了?

任何人都可以帮助我吗? 感谢

1 个答案:

答案 0 :(得分:0)

您的代码不能为我编译。我在in_addrhostent上收到错误。但是,如果我将这些声明分别更改为struct in_addrstruct hostent,它会在没有警告的情况下进行编译,并在运行时发出以下输出:

lb-in-f94.1e100.net

这似乎是正确的。

如果它按原样编译,那么您可能正在使用不同的操作系统。我尝试了MacOS和Linux,结果相同。