comparison src/http/ngx_http_core_module.c @ 3420:eb8233ede93f

do not disable keepalive after POST requests for MSIE 7+
author Igor Sysoev <igor@sysoev.ru>
date Mon, 01 Feb 2010 12:58:07 +0000
parents fcd72b8d69f3
children fd098caab443
comparison
equal deleted inserted replaced
3419:fcd72b8d69f3 3420:eb8233ede93f
783 break; 783 break;
784 } 784 }
785 785
786 if (r->keepalive) { 786 if (r->keepalive) {
787 787
788 if (r->headers_in.msie) { 788 if (r->headers_in.msie6) {
789 if (r->method == NGX_HTTP_POST) { 789 if (r->method == NGX_HTTP_POST) {
790 /* 790 /*
791 * MSIE may wait for some time if an response for 791 * MSIE may wait for some time if an response for
792 * a POST request was sent over a keepalive connection 792 * a POST request was sent over a keepalive connection
793 */ 793 */