linux socket read函数
linux-dash
A beautiful web dashboard for Linux
项目地址:https://gitcode.com/gh_mirrors/li/linux-dash
免费下载资源
·
int my_read(int fd, void *buffer, int length)
{
int bytes_left;
int bytes_read;
char *ptr = NULL;
bytes_left = length;
while (bytes_left > 0)
{
bytes_read = read(fd, ptr, bytes_read);
if (bytes_read < 0)
{
if (errno == EINTR)
{
bytes_read = 0;
}
else
{
return(-1);
}
}
else if (0 == bytes_read)
{
break;
}
bytes_left -= bytes_read;
ptr += bytes_read;
}
return(length-bytes_left);
}
这个只能针对阻塞模式的socket设置read超时,在setsocket函数里面设置read和write的超时时间;非阻塞模式的socket需要处理EAGAIN错误。
http://blog.sina.com.cn/s/blog_5acb430f0100aer1.html
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 年前
更多推荐
已为社区贡献2条内容
所有评论(0)