在端口 <1024 处绑定 UDP 套接字?

发布于 2024-10-08 01:13:42 字数 143 浏览 1 评论 0 原文

我想我已经知道答案了,但只是为了确定一下。我试图在 iOS 下监听低于 1024 的端口上的 UDP 广播,bind() 返回权限被拒绝。

在 OS XI 上,如果我以 root 身份运行,它就可以工作。在 iOS 设备上(无需越狱)有解决此问题的方法吗?

I think I already know the answer, but just to make sure. I am trying to listen for UDP broadcasts on a port below 1024 under iOS, and bind() returns permission denied.

On OS X I can get it to work if I run as root. Is there a way around this problem On iOS devices (without jailbreak)?

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

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

发布评论

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

评论(2

为你鎻心 2024-10-15 01:13:42

简短的回答:

你不能。

长答案:

在大多数 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.

柒夜笙歌凉 2024-10-15 01:13:42

我部分同意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!

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