comparison src/event/ngx_event_connect.c @ 454:a8424ffa495c NGINX_0_7_39

nginx 0.7.39 *) Bugfix: large response with SSI might hang, if gzipping was enabled; the bug had appeared in 0.7.28. Thanks to Artem Bokhan. *) Bugfix: a segmentation fault might occur in worker process, if short static variants are used in a "try_files" directive.
author Igor Sysoev <http://sysoev.ru>
date Mon, 02 Mar 2009 00:00:00 +0300
parents 0b6053502c55
children c04fa65fe604
comparison
equal deleted inserted replaced
453:9ef0e36f3cd5 454:a8424ffa495c
153 * Linux returns EAGAIN instead of ECONNREFUSED 153 * Linux returns EAGAIN instead of ECONNREFUSED
154 * for unix sockets if listen queue is full 154 * for unix sockets if listen queue is full
155 */ 155 */
156 || err == NGX_EAGAIN 156 || err == NGX_EAGAIN
157 #endif 157 #endif
158 || err == NGX_ECONNRESET
158 || err == NGX_ENETDOWN 159 || err == NGX_ENETDOWN
159 || err == NGX_ENETUNREACH 160 || err == NGX_ENETUNREACH
160 || err == NGX_EHOSTDOWN 161 || err == NGX_EHOSTDOWN
161 || err == NGX_EHOSTUNREACH) 162 || err == NGX_EHOSTUNREACH)
162 { 163 {