gpt4 book ai didi

c - getnameinfo() 给了我奇怪的主机名

转载 作者:行者123 更新时间:2023-11-30 16:11:49 25 4
gpt4 key购买 nike

我有问题。我想将 IP 地址 (81.2.195.254) 转换为主机名 (www.farnost-hranice.cz)。
这里你可以尝试转换一下这个IP地址看看是否正确:
https://whatismyipaddress.com/hostname-ip
我的问题是,当我尝试将 IP 地址转换为主机名时,它给了我奇怪的(甚至无法访问)主机名:
254.195.forpsi.net

我做错了什么?

我的代码在这里:

#include <stdio.h>  //scanf , printf
#include <string.h> //strtok
#include <stdlib.h> //realloc
#include <sys/socket.h> //socket
#include <netinet/in.h> //sockaddr_in
#include <arpa/inet.h> //getsockname
#include <netdb.h> //hostent
#include <unistd.h> //close
#include <getopt.h> //getopt

int main(void)
{


struct sockaddr_in sa; // could be IPv4 if you want
char host[1024];

sa.sin_family = AF_INET;
sa.sin_addr.s_addr = inet_addr("81.2.195.254");

getnameinfo((struct sockaddr*)&sa, sizeof sa, host, sizeof host, NULL, 0, 0);
printf("hostname: %s", host);
return 0;
}

最佳答案

正如预期的那样,IP 地址 81.2.195.254 的反向主机名(又名 PTR 记录)确实是 254.195.forpsi.net

您可以自己检查一下,例如使用程序“host”:

$ host 81.2.195.254

254.195.2.81.in-addr.arpa domain name pointer 254.195.forpsi.net.

主机名 www.farnost-hranice.cz 也指向 IP 地址 81.2.195.254,这是正确的,但没有相反的链接.

关于c - getnameinfo() 给了我奇怪的主机名,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58488960/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com