运营商可以限制UDP流量吗?
有可能吗?有这样的做法吗?
我正在制作一个应用程序,它可以在 wifi 上与 udp 配合使用,但在 3G 网络上却无法正常工作。这很可能是我的代码中的某些平台限制或错误,但我想知道运营商是否可能对使用 UDP 施加限制。
该应用程序适用于黑莓平台。
Is it possible and is there such a practice?
I am making an application which works well with udp over wifi but fails over 3G networks. It could very well be some platform limitation or error in my code but I am wondering if it is possible to have limitation on using UDP imposed by the carrier.
The application is for the Blackberry platform.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
从技术上讲,他们有可能限制 UDP,但不太可能这样做。正如已经提到的,您可能只是遇到了高丢包率。
这是流媒体应用程序吗?如果没有,您可以考虑使用 TCP 来确保交付。
It's technically possibly for them to limit UDP, but unlikely that they would. As already mentioned, you are probably just experiencing high packet loss.
Is this a streaming application? If not, you could consider using TCP instead to assure delivery.