我在套接字中使用无限循环,如果它接收到一些数据,它应该接收它,或者它想要发送它发送的数据。如下所示。我正在使用选择。我只有一个socket sd。
fd_set readsd;
int maxsd = readsd +1;
// all those actions of setting maxsd to the maximum fd +1 and FDSETing the FDs.
while(1)
{
FD_ZERO(&read_sd);
FD_SET(sd, &read_sd);
if(FD_ISSET(sd, &readsd))
{
//recv call
}
else
{
//send call
}
}
据我所知, select 选择数据首先到达的套接字描述符之一。但是这里我只有一个套接字,如果有数据我想recv,否则我想发送。
在那种情况下,上面给出的代码可以吗?或者还有其他我不知道的选择?