从 iOS 代码 Ping IP 地址

发布于 2024-11-03 20:42:17 字数 64 浏览 1 评论 0原文

如何从 iOS 应用程序代码 ping IP 地址?这与尝试通过 NSURLConnection 连接到它相同吗?

How do you ping an IP address from your iOS app code? Is it same as trying to connect to it via NSURLConnection?

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

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

发布评论

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

评论(2

谁许谁一生繁华 2024-11-10 20:42:17

这是苹果示例代码的链接:
http://developer.apple.com/library/mac/ #samplecode/SimplePing/Introduction/Intro.html

iOS 和 OS X 是相同的代码

Here is a link to apple's sample code:
http://developer.apple.com/library/mac/#samplecode/SimplePing/Introduction/Intro.html

It is the same code iOS and OS X

驱逐舰岛风号 2024-11-10 20:42:17

它们是否相同,

因此我可以对两者使用 NSURLConnection ?

简单的答案(就您的编程选择而言):

没有

为什么?

ping 使用 ICMP,Web 连接使用 TCP。

这些协议是对等的,但它们并不相同。

NSURLConnection 为 HTTP 和 HTTPS 建立 TCP 连接。据我所知,它不能使用任何基于网络寻址(v4 和 v6)的对等协议系列,即 TCP/IP 的“互联网协议或 IP”。

Are they the same,

and thus I'd be able to use NSURLConnection for both?

The simple answer (as far as your programming choices):

no

why?

ping uses ICMP, web connections use TCP.

These protocols are peers, they are not the same.

NSURLConnection makes TCP connections for HTTP and HTTPS. As best I can tell, it cannot use any peer protocol families that live on top of network addressing (v4 and v6), which is the "internet protocol or IP" of TCP/IP.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文