Unix网络编程
我编写了一个客户端-服务器程序,它将服务器中的文件中的一些数据发送到客户端。在此,如果服务器未运行,我不希望客户端无限期地等待。为此,我使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在
select
返回后,您实际上会读取
吗?您必须从select
标记的 fd 中读取
。You do actually
read
afterselect
returns? You mustread
from the fd thatselect
marked.