freebsd-ports/www/mini_httpd/files/patch-mini_httpd.c
Stefan Eßer 823cc65549 Make mini_httpd survive ECONNABORTED on a file descriptor.
PR:		66315
Submitted by: 	Thomas Wolf (tw at wsf dot at)
2005-01-08 13:02:18 +00:00

12 lines
334 B
C

--- mini_httpd.c~ Wed Dec 3 19:27:22 2003
+++ mini_httpd.c Thu May 6 23:36:20 2004
@@ -816,7 +816,7 @@
}
if ( conn_fd < 0 )
{
- if ( errno == EINTR || errno == EAGAIN )
+ if ( errno == EINTR || errno == EAGAIN || errno == ECONNABORTED )
continue; /* try again */
#ifdef EPROTO
if ( errno == EPROTO )