Linux套接字缓冲数据大小
是否有任何简单的函数可以检查有多少数据已缓冲但未读取? FD_ISSET仅指示缓冲区中存在数据。是否可以不在程序中创建第二个缓冲区以更好地控制缓冲区?
Is there any simple functions to check how much data is buffered but unread? FD_ISSET only indicates the presence of data in the buffer. Is possible not to create a second buffer in the program for greater control of buffer?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以将
recv()
与MSG_PEEK
和MSG_DONTWAIT
标志一起使用,但不能保证不会有更多 em> 字节可用,而不是在这种情况下返回的recv()
。在程序中使用缓冲区是解决问题的正常且可接受的方法。
You could use
recv()
with theMSG_PEEK
andMSG_DONTWAIT
flags, but there's no firm guarantee that there aren't more bytes available thanrecv()
returned in that case.Using a buffer within your program is the normal and accepted way to solve the problem.