linux下使用write\send发送数据报 EAGAIN : Resource temporarily unavailable 错
linux-dash
A beautiful web dashboard for Linux
项目地址:https://gitcode.com/gh_mirrors/li/linux-dash
免费下载资源
·
linux下使用write\send发送数据报 EAGAIN : Resource temporarily unavailable 错
首先是我把套接字设置为异步的了,然后在使用write发送数据时采取的方式是循环发送大量的数据;由于是异步的,write\send将要发送的数据提交到发送缓冲区后是立即返回的,并不需要对端确认数据已接收。在这种情况下是很有可能出现发送缓冲区被填满,导致write\send无法再向缓冲区提交要发送的数据。因此就产生了Resource temporarily unavailable的错误,EAGAIN 的意思也很明显,就是要你再次尝试。
把发送部分修改如下
int SeanSend(int fd, void *buffer, int length)
{
int bytes_left;
int written_bytes;
char *ptr;
ptr=(char *)buffer;
bytes_left=length;
while(bytes_left>0)
{
/* 开始写*/
written_bytes=write(fd, ptr, bytes_left);
if(written_bytes<=0) /* 出错了*/
{
if(errno==EINTR) /* 中断错误 我们继续写*/
{
continue;
printf("[SeanSend]error errno==EINTR continue\n");
}
else if(errno==EAGAIN) /* EAGAIN : Resource temporarily unavailable*/
{
sleep(1);//等待一秒,希望发送缓冲区能得到释放
continue;
printf("[SeanSend]error errno==EAGAIN continue\n");
}
else /* 其他错误 没有办法,只好退了*/
{
printf("[SeanSend]ERROR: errno = %d, strerror = %s \n"
, errno, strerror(errno));
return(-1);
}
}
bytes_left-=written_bytes;
ptr+=written_bytes;/* 从剩下的地方继续写?? */
}
return length;
}
这里的sleep(1)并不是一个好的处理方式
真正应该的方式是使用事件通知,在得到可写的事件通知后再发送数据!!!
GitHub 加速计划 / li / linux-dash
10.39 K
1.2 K
下载
A beautiful web dashboard for Linux
最近提交(Master分支:2 个月前 )
186a802e
added ecosystem file for PM2 4 年前
5def40a3
Add host customization support for the NodeJS version 4 年前
更多推荐
已为社区贡献6条内容
所有评论(0)