Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用 CFSocketCreate() 创建了一个 UDP 套接字,用于在 iOS 下接收数据。UDP 套接字有 20% 的数据丢失。(80KB 接收和 20KB 在 5 分钟内丢失)。
然后我用谷歌搜索并告诉我我可以扩大套接字缓冲区的大小。(在 linux 中通过 setsockopt() 实现 SO_RCVBUF)
但是在 iOS 下我该怎么做呢,我应该设置多大的缓冲区大小呢?
谢谢!