如何查询iPhone当前的IP地址?

发布于 2024-08-09 03:12:41 字数 25 浏览 5 评论 0原文

如何查询iPhone当前的IP地址?

How do I query the iPhone's current IP address?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

秋千易 2024-08-16 03:12:42

您可以尝试使用类似此服务:
Whatismyip 并捕获字符串 :)

感谢 Erica Sadun 的 iPhone Developer's Cookbok,第 2 版,第 555 页。

You can try to use similar to this service:
Whatismyip and capture the string :)

Credit to Erica Sadun's iPhone Developer's Cookbok, 2nd ed, page 555.

雪若未夕 2024-08-16 03:12:41

如果您想要外部 IP 地址(用于从本地网络外部连接的 IP 地址),则需要查询外部网络上的服务器。快速搜索得到以下结果:http://checkip.dyndns.orghttp://www.whatismyip.com。使用例如加载页面非常简单

[NSData dataWithContentsOfURL:url]

并进行一些字符串操作来检索 IP 地址。

如果您想要内部 IP 地址(例如通过 DHCP 分配给您的设备的 IP 地址),您通常可以做的是解析设备的主机名,即


/*
Returns the local IP, or NULL on failure.
*/
const char* GetLocalIP() {
  char buf[256];
  if(gethostname(buf,sizeof(buf)))
    return NULL;
  struct hostent* he = gethostbyname(buf);
  if(!he)
    return NULL;
  for(int i=0; he->h_addr_list[i]; i++) {
    char* ip = inet_ntoa(*(struct in_addr*)he->h_addr_list[i]);
    if(ip != (char*)-1) return ip;
  }
  return NULL;
}

If you want the external IP address (the one used to connect from outside the local network), you need to query a server on the external network. A quick search yielded the following: http://checkip.dyndns.org, http://www.whatismyip.com. It is quite simple to load the page using e.g.

[NSData dataWithContentsOfURL:url]

and do some string manipulation to retrieve the IP address.

If you want the internal IP address (the one assigned e.g. by DHCP to your device), what you can usually do is to resolve the device's hostname, i.e.


/*
Returns the local IP, or NULL on failure.
*/
const char* GetLocalIP() {
  char buf[256];
  if(gethostname(buf,sizeof(buf)))
    return NULL;
  struct hostent* he = gethostbyname(buf);
  if(!he)
    return NULL;
  for(int i=0; he->h_addr_list[i]; i++) {
    char* ip = inet_ntoa(*(struct in_addr*)he->h_addr_list[i]);
    if(ip != (char*)-1) return ip;
  }
  return NULL;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文