comparison src/http/modules/ngx_http_fastcgi_module.c @ 1734:b4d3c9c1ae20 stable-0.5

r1678, r1679 merge: *) copy protocol value when large request line is copied, this fixes error "fastcgi: the request record is too big" *) log how big fastcgi record
author Igor Sysoev <igor@sysoev.ru>
date Wed, 12 Dec 2007 21:11:21 +0000
parents 9b047c9e96c1
children c7757ce0ae97
comparison
equal deleted inserted replaced
1733:7b074520602f 1734:b4d3c9c1ae20
549 } 549 }
550 550
551 551
552 if (len > 65535) { 552 if (len > 65535) {
553 ngx_log_error(NGX_LOG_ALERT, r->connection->log, 0, 553 ngx_log_error(NGX_LOG_ALERT, r->connection->log, 0,
554 "fastcgi: the request record is too big"); 554 "fastcgi request record is too big: %uz", len);
555 return NGX_ERROR; 555 return NGX_ERROR;
556 } 556 }
557 557
558 558
559 padding = 8 - len % 8; 559 padding = 8 - len % 8;