持久连接中应使用哪个循环?

时间:2018-10-08 22:50:29

标签: sockets

我应该使用哪个循环进行单/持久连接?<​​/ p>

在循环中,应该使用send() > 0,还是应该使用while(1)

while (send() > 0)
{
    because until the message is sent, it should be alive. so should we use send() > 0. 
}

while (1)
{
    infinite loop
}

0 个答案:

没有答案