Unix网络编程

发布于 2024-11-04 08:39:15 字数 222 浏览 0 评论 0原文

我编写了一个客户端-服务器程序,它将服务器中的文件中的一些数据发送到客户端。在此,如果服务器未运行,我不希望客户端无限期地等待。为此,我使用 SELECT 系统调用,在这个系统调用中,我们可以指定计时作为参数,它告诉客户端等待服务器在该时间内发送数据。现在的问题是,它只发送该号码的数据。秒数(如 select() 中指定)。它没有做实际工作.. 注意:- 我正在使用 UDP 连接。

任何人都可以解决这个问题吗?

I have written a client-server program which does some data from a file in server to the client. In this I don't want the client to wait indefinitely if server is not running. For this I am using SELECT system call, in this system call we can specify timings as an argument, which tells the client to waits for the server to send the data within that time. Now the problem is, it's sending the data oly for that no. of seconds(as specified in select() ). It's not doing the actual work..
NOTE:- I am using UDP connection.

Can Anyone solve this problem??

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

予囚 2024-11-11 08:39:15

select 返回后,您实际上会读取吗?您必须从 select 标记的 fd 中读取

You do actually read after select returns? You must read from the fd that select marked.

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