comparison src/core/ngx_connection.c @ 278:0ba4821f4460

nginx-0.0.2-2004-03-04-10:04:55 import
author Igor Sysoev <igor@sysoev.ru>
date Thu, 04 Mar 2004 07:04:55 +0000
parents 70e1c7d2b83d
children 30310107dbc9
comparison
equal deleted inserted replaced
277:e91499541410 278:0ba4821f4460
246 && c->log_error == NGX_ERROR_IGNORE_ECONNRESET) 246 && c->log_error == NGX_ERROR_IGNORE_ECONNRESET)
247 { 247 {
248 return 0; 248 return 0;
249 } 249 }
250 250
251 if (err == NGX_ECONNRESET || err == NGX_EPIPE || err == NGX_ENOTCONN) { 251 if (err == NGX_ECONNRESET
252 #if !(WIN32)
253 || err == NGX_EPIPE
254 #endif
255 || err == NGX_ENOTCONN)
256 {
252 257
253 switch (c->log_error) { 258 switch (c->log_error) {
254 259
255 case NGX_ERROR_IGNORE_ECONNRESET: 260 case NGX_ERROR_IGNORE_ECONNRESET:
256 case NGX_ERROR_INFO: 261 case NGX_ERROR_INFO: