如何等待从套接字接收数据?

时间:2015-12-20 10:44:55

标签: c++ sockets timeout wait

我在c ++中创建了wait_for_data函数,但是无法正常工作。

在下面的代码中,numReady始终为true;为什么?

struct timeval selTimeout;
selTimeout.tv_sec = timeout / 1000;
selTimeout.tv_usec = (timeout % 1000) * 1000;
fd_set readSet;
FD_ZERO(&readSet);
FD_SET(sock, &readSet);

int numReady = select(sock + 1, &readSet, NULL, NULL, &selTimeout);
if (numReady>0) {
// reading data here
} else {
//finish
}

谢谢

1 个答案:

答案 0 :(得分:0)

即使select报告其准备就绪,套接字也可能会阻塞。为避免这种阻塞,您应该在套接字上使用O_NONBLOCK。阅读manpage - mkaes