gpt4 book ai didi

ios - 如何从该 LAN 上的 IP 地址解析我 LAN 中设备的主机名?

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:15:57 27 4
gpt4 key购买 nike

我必须根据该 LAN 上的 ip 地址解析 LAN 中设备的主机名。我有一些代码适用于外部 IP 地址,但不适用于内部连接的设备。

下面我附上了代码。

如果您有任何想法从 iOS/OSX 中的 IP 获取远程机器的主机名,这会让我很开心。

  int error;
struct addrinfo *results = NULL;

error = getaddrinfo("173.194.34.24", NULL, NULL, &results);
if (error != 0)
{
NSLog (@"Could not get any info for the address");

}

for (struct addrinfo *r = results; r; r = r->ai_next)
{
char hostname[NI_MAXHOST] = {0};
error = getnameinfo(r->ai_addr, r->ai_addrlen, hostname, sizeof hostname, NULL, 0 , 0);
if (error != 0)
{
continue; // try next one
}
else
{
NSLog (@"Found hostname: %s", hostname);
break;
}
}


freeaddrinfo(results);

或使用 NSHost

NSLog(@"%@ \n%@",[NSHost currentHost],[[NSHost hostWithAddress:@"172.17.241.61"] names]);

最佳答案

直接对特定 DNS 进行 DNS 查找的唯一方法是自己实现协议(protocol)或使用某些库。

https://serverfault.com/questions/173187/what-does-a-dns-request-look-like

https://www.ietf.org/rfc/rfc1035.txt

https://github.com/adeboer/rfc1035lib

关于ios - 如何从该 LAN 上的 IP 地址解析我 LAN 中设备的主机名?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29938938/

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