diff options
| author | Igor Sysoev <igor@sysoev.ru> | 2002-09-12 14:42:29 +0000 |
|---|---|---|
| committer | Igor Sysoev <igor@sysoev.ru> | 2002-09-12 14:42:29 +0000 |
| commit | 3a40d48164f13be2ddfc2ed84e593edc40d12a1c (patch) | |
| tree | 591342422899073c8e16cf0bb72a64a2d840935c /src/http/ngx_http.h | |
| parent | e0268b95c6dea75f88d3874213b1aa0cd0aba692 (diff) | |
| download | nginx-3a40d48164f13be2ddfc2ed84e593edc40d12a1c.tar.gz nginx-3a40d48164f13be2ddfc2ed84e593edc40d12a1c.tar.bz2 | |
nginx-0.0.1-2002-09-12-18:42:29 import
Diffstat (limited to '')
| -rw-r--r-- | src/http/ngx_http.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/http/ngx_http.h b/src/http/ngx_http.h index 0a260049c..6968dee4f 100644 --- a/src/http/ngx_http.h +++ b/src/http/ngx_http.h @@ -96,6 +96,8 @@ struct ngx_http_request_s { int method; + time_t lingering_time; + int http_version; int http_major; int http_minor; @@ -111,6 +113,9 @@ struct ngx_http_request_s { ssize_t client_content_length; char *discarded_buffer; + unsigned keepalive:1; + unsigned lingering_close:1; + unsigned header_timeout:1; unsigned process_header:1; |
