在端口 <1024 处绑定 UDP 套接字?
我想我已经知道答案了,但只是为了确定一下。我试图在 iOS 下监听低于 1024 的端口上的 UDP 广播,bind() 返回权限被拒绝。
在 OS XI 上,如果我以 root 身份运行,它就可以工作。在 iOS 设备上(无需越狱)有解决此问题的方法吗?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
简短的回答:
你不能。
长答案:
在大多数 UNIX 系统上,您需要 root 权限才能侦听 1024 以下的端口。由于您无法使用普通 SDK 和 API 在 iOS 上获得 root 权限,因此这是不可能做到的。
执行此操作的唯一方法是对设备进行越狱。
Short answer:
You can't.
Long answer:
On most UNIX systems you need root privileges to listen on ports below 1024. Since you can not obtain root privileges on iOS using the normal SDK and APIs this is simply impossible to do.
The only way to do this would be to jailbreak the device.
我部分同意badcat的回答。但这并不全是事实,而且有点令人困惑。在 MAC OSX 上,您需要 root 权限才能使用 1024 以下的端口,而在 IOS 上则可以使用。
我确实使用低于 1024 的端口在我的 ipad 和 iphone 上运行了一个应用程序。无需越狱即可正常工作。
您可以看到来自 Android 社区的投诉“https://code.google.com /p/android/issues/detail?id=4039”。所以我认为苹果做了一些聪明的事情!
I partly agree with badcat's answer. But it is not all the truth and kind of confusing. On MAC OSX, you need root privileges to use port below 1024 while it is fine for using it on IOS.
I did run an app on my ipad and iphone using port below 1024. It works fine without jailbreak.
You can see complains from Android community "https://code.google.com/p/android/issues/detail?id=4039". So I think Apple did something smart!