在 NSURLConnection 中禁用 keep-alive
使用 NSURLConnection 时如何禁用保持活动状态?似乎,在取消并关闭它之后,它仍然在某处保存了我连接到服务器的套接字,当服务器获取信息时,我无法从同一服务器访问另一个网址。我想知道是否有一种方法可以完全重置一个套接字并启动另一个套接字。
谢谢,
纳瓦
How can I disable keep-alive when using NSURLConnection? Seems, that after cancelling and close it it still saves somewhere a socket that I was connected to server with and while the server fetches for information i cannot access another urls from the same server. I wonder if there is a way to completely reset a socket and start another one.
Thanks,
Nava
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在服务器上设置超时可以解决问题
Setting timeout on the server solved the problem