comparison src/os/unix/ngx_readv_chain.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 c456a023113c
comparison
equal deleted inserted replaced
175:8ea1b77a7700 176:fae16d0c5bf4
116 /* 116 /*
117 * on FreeBSD recv() may return 0 on closed socket 117 * on FreeBSD recv() may return 0 on closed socket
118 * even if kqueue reported about available data 118 * even if kqueue reported about available data
119 */ 119 */
120 120
121 #if 0
121 ngx_log_error(NGX_LOG_ALERT, c->log, 0, 122 ngx_log_error(NGX_LOG_ALERT, c->log, 0,
122 "readv() returned 0 while kevent() reported " 123 "readv() returned 0 while kevent() reported "
123 "%d available bytes", rev->available); 124 "%d available bytes", rev->available);
125 #endif
124 126
125 rev->eof = 1; 127 rev->eof = 1;
126 rev->available = 0; 128 rev->available = 0;
127 } 129 }
128 130