diff options
| author | Igor Sysoev <igor@sysoev.ru> | 2010-06-04 17:47:04 +0000 |
|---|---|---|
| committer | Igor Sysoev <igor@sysoev.ru> | 2010-06-04 17:47:04 +0000 |
| commit | 575d563e22c09442c3f2f4537ee0f51ccf28d271 (patch) | |
| tree | e113849c4ab6ba4842cc9e24e3cb342ef3a9c11c /src/http/ngx_http_request.h | |
| parent | 0a3498289db56ee688434c0d5ade4483521e6f62 (diff) | |
| download | nginx-575d563e22c09442c3f2f4537ee0f51ccf28d271.tar.gz nginx-575d563e22c09442c3f2f4537ee0f51ccf28d271.tar.bz2 | |
merge r3316, r3317, r3420, r3421, r3453:
browsers related fixes:
*) add MSIE padding for Chrome too
*) disable keepalive for Safari:
https://bugs.webkit.org/show_bug.cgi?id=5760
*) do not disable keepalive after POST requests for MSIE 7+
Diffstat (limited to 'src/http/ngx_http_request.h')
| -rw-r--r-- | src/http/ngx_http_request.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/http/ngx_http_request.h b/src/http/ngx_http_request.h index 974020ef8..3772e81b0 100644 --- a/src/http/ngx_http_request.h +++ b/src/http/ngx_http_request.h @@ -220,6 +220,8 @@ typedef struct { unsigned msie6:1; unsigned opera:1; unsigned gecko:1; + unsigned chrome:1; + unsigned safari:1; unsigned konqueror:1; } ngx_http_headers_in_t; |
