Linux套接字缓冲数据大小

发布于 2024-09-12 09:46:23 字数 82 浏览 5 评论 0原文

是否有任何简单的函数可以检查有多少数据已缓冲但未读取? 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 技术交流群。

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

发布评论

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

评论(1

朮生 2024-09-19 09:46:23

您可以将 recv()MSG_PEEKMSG_DONTWAIT 标志一起使用,但不能保证不会有更多 em> 字节可用,而不是在这种情况下返回的 recv()

在程序中使用缓冲区是解决问题的正常且可接受的方法。

You could use recv() with the MSG_PEEK and MSG_DONTWAIT flags, but there's no firm guarantee that there aren't more bytes available than recv() returned in that case.

Using a buffer within your program is the normal and accepted way to solve the problem.

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