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 年前
Logo

旨在为数千万中国开发者提供一个无缝且高效的云端环境,以支持学习、使用和贡献开源项目。

更多推荐