comparison src/os/unix/ngx_recv.c @ 176:fae16d0c5bf4 NGINX_0_3_35

nginx 0.3.35 *) Bugfix: the accept-filter and the TCP_DEFER_ACCEPT option were set for first "listen" directive only; bug appeared in 0.3.31. *) Bugfix: in the "proxy_pass" directive without the URI part in a subrequest.
author Igor Sysoev <http://sysoev.ru>
date Wed, 22 Mar 2006 00:00:00 +0300
parents 2d15b82126ed
children 583decdb82a4
comparison
equal deleted inserted replaced
175:8ea1b77a7700 176:fae16d0c5bf4
75 /* 75 /*
76 * on FreeBSD recv() may return 0 on closed socket 76 * on FreeBSD recv() may return 0 on closed socket
77 * even if kqueue reported about available data 77 * even if kqueue reported about available data
78 */ 78 */
79 79
80 #if 0
80 ngx_log_error(NGX_LOG_ALERT, c->log, 0, 81 ngx_log_error(NGX_LOG_ALERT, c->log, 0,
81 "recv() returned 0 while kevent() reported " 82 "recv() returned 0 while kevent() reported "
82 "%d available bytes", rev->available); 83 "%d available bytes", rev->available);
84 #endif
83 85
84 rev->eof = 1; 86 rev->eof = 1;
85 rev->available = 0; 87 rev->available = 0;
86 } 88 }
87 89