美好的一天,我有小型 http 服务器,我有线程池当前连接,当我在线程中发送文件时,我收到信号 SIGPIPE 并且我的服务器崩溃。部分代码://在线程中:
detail::create_headers(headers,stat_buf.st_size,mime_types::extension_to_type(extension.c_str()));
if(detail::write_to_client(fd_client,headers,unicode_strlen(headers))!=-1)
{
while(offset!=stat_buf.st_size)
{
if(sendfile(fd_client,src,&offset,stat_buf.st_size)==-1)
{
DEBUG_MSG_FORMAT("sendfile error: %d",errno);
break;
}
}
}
//和 :
size_t write_to_client(int fd_client,const void *buf,size_t len)
{
int optval = 1;
setsockopt (fd_client, SOL_TCP, TCP_CORK, &optval, sizeof (int));
size_t result = write(fd_client,buf,len);
if(result==-1)
{
DEBUG_MSG_FORMAT("write error: %d",errno);
}
optval = 0;
setsockopt (fd_client, SOL_TCP, TCP_CORK, &optval, sizeof (int));
return result;
}
我如何处理或防止线程中的 SIGPIPE?