//接收数据
void CMyBlueT::RecvMsg()
{
char Buffer[BUFFERSIZE] = { 0 }; // 文件缓冲区
DeleteFile(m_strPath);
CFile file;
file.Open(m_strPath, CFile::modeCreate | CFile::modeWrite);
{
file.Seek(0, CFile::begin);
memt(&Buffer, 0, BUFFERSIZE);
in少先队故事t size = 0;
int中国传统节日手抄报 nTimes = 0;
int nRecvTimes = 0;
BOOL bRecv = FALSE;
//设置非阻塞
unsigned long ul = 1;
int ret;
ret = ioctlsocket(m_client_socket, FIONBIO, (unsigned long *)&ul); //设置成非阻塞模式
if (h1n1禽流感ret =冬天像什么= SOCKET_ERROR) //设置失败
{
SetTips(L”设置非阻塞模式失败。”);
return;
}
while (1)
{
size = recv(m_client_socket, Buffer, BUFFERSIZE, 0);
if (size > 0)
{
bRecv = TRUE;
file.Write(Buffer, size);
//清空缓存区以便下一次接收
memt(&Buffer, 0, BUFFERSIZE);
}
el
{
nTimes++;
if (bRecv)
{
nRecvTimes++;
}
}
if (nRecvTimes > 10 || nTimes > 100)
{
break;
}
Sleep(50);
}
//阻塞
ul = 0;
ret = ioctlsocket(m_client_socket, FIONBIO, (unsigned long *)&ul); //设置成非阻塞模式
if (ret == SOCKET_ERROR) //设置失败
小学数学说课教案 {
SetTips(L”设置阻塞模式失败。”);
return;
}
file.Clo();;
}
}
本文地址:https://blog.csdn.net/weixin_37999268/article/details/108772901
本文发布于:2023-04-04 05:18:13,感谢您对本站的认可!
本文链接:https://www.wtabcd.cn/fanwen/zuowen/d9dcc57da2196bd62fc5ae246d80c8e0.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文word下载地址:c++ Winsock 非阻塞接收蓝牙数据.doc
本文 PDF 下载地址:c++ Winsock 非阻塞接收蓝牙数据.pdf
留言与评论(共有 0 条评论) |